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