From 1ae69b889506dbaea5d1a5eb9d4375eb7e240130 Mon Sep 17 00:00:00 2001 From: bensteUEM Date: Thu, 16 Jan 2025 20:11:11 +0100 Subject: [PATCH] fix: updated poetry pytest automation --- .github/workflows/python-test.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 6cbf408..462af51 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -36,9 +36,8 @@ jobs: poetry install env: POETRY_HOME: ${{ github.workspace }}/.poetry - - - name: Run Tests + - name: Run pytest run: | - pytest tests/* + pytest tests/ env: - POETRY_HOME: ${{ github.workspace }}/.poetry \ No newline at end of file + POETRY_HOME: ${{ github.workspace }}/.poetry