From c7dbb95357e28853bcd646e5faa117d8034ead05 Mon Sep 17 00:00:00 2001 From: George Panchuk Date: Tue, 2 Dec 2025 14:57:29 +0700 Subject: [PATCH] rollback test launch --- tests/integration-tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration-tests.sh b/tests/integration-tests.sh index e1764193..f8812aa2 100755 --- a/tests/integration-tests.sh +++ b/tests/integration-tests.sh @@ -42,10 +42,10 @@ set +e # Backwards compatibility tests are enabled by setting QDRANT_VERSION to a version that is not the latest # OR by setting IGNORE_CONGRUENCE_TESTS to true if [[ "$QDRANT_VERSION" != "$QDRANT_LATEST" ]] || [[ "$IGNORE_CONGRUENCE_TESTS" == "true" ]]; then - QDRANT_VERSION=$QDRANT_VERSION pytest --durations=0 tests/congruence_tests/test_query.py::test_query_group + QDRANT_VERSION=$QDRANT_VERSION pytest -x --ignore=tests/congruence_tests PYTEST_EXIT_CODE=$? else - QDRANT_VERSION=$QDRANT_VERSION pytest --durations=0 tests/congruence_tests/test_query.py::test_query_group + QDRANT_VERSION=$QDRANT_VERSION pytest -x PYTEST_EXIT_CODE=$? fi