diff --git a/Makefile b/Makefile index 0b5ba92e9..3c8529dda 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,7 @@ smoke: poetry-no-dev ## Run a small amount of selected tests to verify basic fu $(PYTEST) -n4 -m 'smoke' --dist loadfile --enforce $(flags) testsuite/tests/ kuadrant: poetry-no-dev ## Run all tests available on Kuadrant - $(PYTEST) -n4 -m 'not standalone_only and not disruptive and not ui' --dist loadfile --enforce $(flags) testsuite/tests/singlecluster + $(PYTEST) -n4 -m 'not standalone_only and not disruptive and not ui and not extensions' --dist loadfile --enforce $(flags) testsuite/tests/singlecluster authorino: poetry-no-dev ## Run only Authorino related tests $(PYTEST) -n4 -m 'authorino and not disruptive' --dist loadfile --enforce $(flags) testsuite/tests/singlecluster/ diff --git a/testsuite/tests/singlecluster/limitador/metrics/trlp_metrics/test_trlp_metrics.py b/testsuite/tests/singlecluster/limitador/metrics/trlp_metrics/test_trlp_metrics.py index 7bd425b2e..ee21f054b 100644 --- a/testsuite/tests/singlecluster/limitador/metrics/trlp_metrics/test_trlp_metrics.py +++ b/testsuite/tests/singlecluster/limitador/metrics/trlp_metrics/test_trlp_metrics.py @@ -9,7 +9,7 @@ from .conftest import MODEL_NAME, USERS -pytestmark = [pytest.mark.observability, pytest.mark.limitador] +pytestmark = [pytest.mark.observability, pytest.mark.limitador, pytest.mark.extensions] basic_request = { diff --git a/testsuite/tests/singlecluster/limitador/metrics/trlp_metrics/test_trlp_metrics_stream.py b/testsuite/tests/singlecluster/limitador/metrics/trlp_metrics/test_trlp_metrics_stream.py index 72878a699..96e425005 100644 --- a/testsuite/tests/singlecluster/limitador/metrics/trlp_metrics/test_trlp_metrics_stream.py +++ b/testsuite/tests/singlecluster/limitador/metrics/trlp_metrics/test_trlp_metrics_stream.py @@ -8,7 +8,7 @@ from .conftest import MODEL_NAME, USERS -pytestmark = [pytest.mark.observability, pytest.mark.limitador] +pytestmark = [pytest.mark.observability, pytest.mark.limitador, pytest.mark.extensions] streaming_request = { "model": MODEL_NAME,