- Rename app_test_i2s_loopback to test_i2s_loopback

- Port test_i2s_loopback from xmostest to pytest and test_support
This commit is contained in:
xross
2022-07-05 18:14:05 +01:00
parent 476e3d9f2f
commit 9401bfff83
18 changed files with 162 additions and 49 deletions

9
tests/conftest.py Normal file
View File

@@ -0,0 +1,9 @@
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