1
0
mirror of synced 2024-11-24 13:40:10 +01:00
tja2fumen/testing/conftest.py

12 lines
220 B
Python
Raw Normal View History

import pytest
def pytest_addoption(parser):
parser.addoption("--entry-point", action="store", default="python-api")
@pytest.fixture
def entry_point(request):
return request.config.getoption("--entry-point")