blob: 47a5d888c9be1079f8ed905761ab8634b4c9ffc5 (
plain)
1
2
3
4
5
6
7
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")
|