Changes in / [971d9f2:16988e8]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/test.py

    r971d9f2 r16988e8  
    4242        if includes:
    4343                test_list = [x for x in test_list if
    44                         x.path.startswith( tuple(includes) )
     44                        x.target().startswith( tuple(includes) )
    4545                ]
    4646
     
    4848        if excludes:
    4949                test_list = [x for x in test_list if not
    50                         x.path.startswith( tuple(excludes) )
     50                        x.target().startswith( tuple(excludes) )
    5151                ]
    5252
Note: See TracChangeset for help on using the changeset viewer.