diff options
Diffstat (limited to 'conftest.py')
-rw-r--r-- | conftest.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/conftest.py b/conftest.py index a513bb9e..47a5d888 100644 --- a/conftest.py +++ b/conftest.py @@ -1 +1,8 @@ +import pytest + pytest_plugins = 'setuptools.tests.fixtures' + +def pytest_addoption(parser): + parser.addoption("--package_name", action="append", default=[], + help="list of package_name to pass to test functions") + |