From a8b40a0b23020bdc7dc77bd6323158b6d1292d76 Mon Sep 17 00:00:00 2001 From: meanmail Date: Thu, 19 Sep 2024 13:30:01 +0200 Subject: [PATCH] Add directory change before running tests The build workflow now includes changing to the /review directory before executing tests. This ensures that tests are run in the correct context and can locate all necessary dependencies. --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 68b59374..06d5044d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,6 +51,7 @@ jobs: steps: - name: Run tests run: | + cd /review poetry run python -m pytest build: