diff --git a/tests/conftest.py b/tests/conftest.py index 3bd56ac4..f9127440 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -2,8 +2,19 @@ import pytest def pytest_addoption(parser): - pass - + parser.addoption( + "--enabletracing", + action="store_true", + default=False, + help="Run tests with instruction tracing", + ) + + parser.addoption( + "--enablevcdtracing", + action="store_true", + default=False, + help="Run tests with vcd tracing", + ) @pytest.fixture def options(request):