2013-08-09 03:08:46 +00:00
|
|
|
import os.path
|
|
|
|
|
2017-05-26 12:14:44 +00:00
|
|
|
test_sources = ['injector.py', 'injector_test.py', 'README.md']
|
2013-08-09 03:08:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
def pytest_ignore_collect(path, config):
|
|
|
|
return not os.path.basename(str(path)) in test_sources
|