summaryrefslogtreecommitdiff
path: root/conftest.py
diff options
context:
space:
mode:
authorThiebaud Weksteen <tweek@google.com>2016-11-04 09:43:26 +1100
committerThiebaud Weksteen <tweek@google.com>2016-11-04 10:11:42 +1100
commitcbd6a5bedbabb4d5dfa93e1b5fa297fe3df4528d (patch)
tree71e9577d83a1b8c93ce8777905cb80ef8882345c /conftest.py
parent1bbacb74a51c30cdf3effecbef01c533995e0f7e (diff)
downloadpython-setuptools-git-cbd6a5bedbabb4d5dfa93e1b5fa297fe3df4528d.tar.gz
Add test to verify the install of Pypi top packages
Diffstat (limited to 'conftest.py')
-rw-r--r--conftest.py7
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")
+