diff --git a/tests/test_pretrained_models.py b/tests/test_pretrained_models.py index 32eda6aae..60c9a1bbd 100644 --- a/tests/test_pretrained_models.py +++ b/tests/test_pretrained_models.py @@ -1,6 +1,5 @@ from __future__ import annotations -import os from pathlib import Path import pytest @@ -13,7 +12,7 @@ from mqt.predictor.evaluation import evaluate_sample_circuit # only run test when executed on GitHub runner -EXECUTION_FLAG = os.getenv("RUN_PREGENERATED_TESTS") == "true" +EXECUTION_FLAG = True # os.getenv("RUN_PREGENERATED_TESTS") == "true" @pytest.mark.skipif(not EXECUTION_FLAG, reason="Only run this test on GitHub runner on demand.")