From d6cafeaff39e43e1ade8a146a90d752cbf632057 Mon Sep 17 00:00:00 2001 From: Madeesh Kannan Date: Tue, 16 Jan 2024 13:40:22 +0100 Subject: [PATCH] test: Rename RAG E2E test file (#6750) Prior to this change, this broke `pytest` workflows in VSCode due to identical test names in this file and the integration/unit test file. --- .../{test_rag_pipelines.py => test_rag_pipelines_e2e.py} | 0 releasenotes/notes/rag-e2e-test-rename-3e2c7265dbb6ba9e.yaml | 3 +++ 2 files changed, 3 insertions(+) rename e2e/pipelines/{test_rag_pipelines.py => test_rag_pipelines_e2e.py} (100%) create mode 100644 releasenotes/notes/rag-e2e-test-rename-3e2c7265dbb6ba9e.yaml diff --git a/e2e/pipelines/test_rag_pipelines.py b/e2e/pipelines/test_rag_pipelines_e2e.py similarity index 100% rename from e2e/pipelines/test_rag_pipelines.py rename to e2e/pipelines/test_rag_pipelines_e2e.py diff --git a/releasenotes/notes/rag-e2e-test-rename-3e2c7265dbb6ba9e.yaml b/releasenotes/notes/rag-e2e-test-rename-3e2c7265dbb6ba9e.yaml new file mode 100644 index 000000000..8b741ae61 --- /dev/null +++ b/releasenotes/notes/rag-e2e-test-rename-3e2c7265dbb6ba9e.yaml @@ -0,0 +1,3 @@ +--- +fixes: + - Fix `pytest` breaking in VSCode due to a name collision in the RAG pipeline tests.