pytest-csv-params/tests/conftest.py

10 lines
288 B
Python

"""
Project global fixtures, plugins etc.
"""
pytest_plugins = ["pytester"]
"""
Load the fixture `pytester` for all tests. Even if we don't need it everywhere (we need it only during the plugin
tests), this fixture requires to be loaded in the topmost :mod:`~tests.conftest` module.
"""