Files
lib_xua/tests/conftest.py
xross 9401bfff83 - Rename app_test_i2s_loopback to test_i2s_loopback
- Port test_i2s_loopback from xmostest to pytest and test_support
2022-07-05 18:14:05 +01:00

10 lines
221 B
Python

import pytest
def pytest_addoption(parser):
parser.addoption("--enabletracing", action="store_true", default=False, help="Enable xsim tracing")
@pytest.fixture
def options(request):
yield request.config.option