From 5508b8e6f49fc0b1e387ffb50c117a4c9289b3a6 Mon Sep 17 00:00:00 2001 From: Xevion Date: Sat, 9 Nov 2024 15:36:55 -0600 Subject: [PATCH] use relative path --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 5df429e..19c7cee 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -64,7 +64,7 @@ jobs: poetry run pytest --color=yes --cov=linkpulse --cov-report=term-missing:skip-covered --junitxml=pytest.xml | tee pytest-coverage.txt # pytest-coverage-comment won't error if the files are missing - if [ ! -f backend/pytest-coverage.txt ] || [ ! -f backend/pytest.xml ]; then + if [ ! -f ./pytest-coverage.txt ] || [ ! -f ./pytest.xml ]; then echo "::error::Coverage files not found" exit 1 fi