diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-11-04 14:17:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-04 14:17:12 -0400 |
commit | af73897e292603a5cb54865919aa889d5a2f2419 (patch) | |
tree | 71e9577d83a1b8c93ce8777905cb80ef8882345c /conftest.py | |
parent | 1bbacb74a51c30cdf3effecbef01c533995e0f7e (diff) | |
parent | cbd6a5bedbabb4d5dfa93e1b5fa297fe3df4528d (diff) | |
download | external_python_setuptools-af73897e292603a5cb54865919aa889d5a2f2419.tar.gz external_python_setuptools-af73897e292603a5cb54865919aa889d5a2f2419.tar.bz2 external_python_setuptools-af73897e292603a5cb54865919aa889d5a2f2419.zip |
Merge pull request #839 from tweksteen/add_pypi_integration_tests
Add test to verify the install of Pypi top packages
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") + |