injector/conftest.py

8 lines
182 B
Python
Raw Normal View History

import os.path
test_sources = ['injector.py', 'injector_test.py', 'README.md']
def pytest_ignore_collect(path, config):
return not os.path.basename(str(path)) in test_sources