From e8c735eb20ef9eea36a0be00dc8a1fa29cc697bc Mon Sep 17 00:00:00 2001 From: Kevin Schaper Date: Thu, 30 May 2024 15:18:52 -0700 Subject: [PATCH] split out tests from install, make the tests more verbose --- .github/workflows/pr-test.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr-test.yaml b/.github/workflows/pr-test.yaml index 8a7e51a..e06bb77 100644 --- a/.github/workflows/pr-test.yaml +++ b/.github/workflows/pr-test.yaml @@ -35,7 +35,7 @@ jobs: with: path: .venv key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} - - name: Install dependencies and run - run: | - poetry install --no-interaction - poetry run python -m unittest + - name: Install dependencies + run: poetry install --no-interaction + - name: run tests + run: poetry run python -m unittest -v