rollback test launch

This commit is contained in:
George Panchuk
2025-12-02 14:57:29 +07:00
parent 670f07fbfa
commit c7dbb95357

View File

@@ -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