Home | History | Annotate | Download | only in setuptools
      1 pytest_plugins = 'setuptools.tests.fixtures'
      2 
      3 
      4 def pytest_addoption(parser):
      5     parser.addoption(
      6         "--package_name", action="append", default=[],
      7         help="list of package_name to pass to test functions",
      8     )
      9