From bcc599cc5f865fc1b58f5eb95f6e5409cc4c6cc6 Mon Sep 17 00:00:00 2001 From: Samuele Date: Sat, 15 Feb 2025 10:45:53 +0100 Subject: [PATCH] update test workflow to change directory before running pytest --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5ccd5ce..e0ab403 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -34,4 +34,6 @@ jobs: cd backend alembic -c tests/alembic.ini upgrade head - name: Run tests - run: pytest + run: | + cd backend + pytest