Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading