From d176952d0663870b911c76825e056b313e750a1a Mon Sep 17 00:00:00 2001 From: Simon Jagoe Date: Sun, 3 Dec 2023 00:47:25 +0200 Subject: [PATCH] Fix unittest invocation in tests --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e2dfb0e..fcaba33 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: needs: [lint] strategy: matrix: - python-version: [3.7, 3.8, 3.9, "3.10", "3.11", '3.12', 'pypy2', 'pypy3'] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy2", "pypy3"] os: [windows-2019, ubuntu-20.4, macos-11] runs-on: ${{ matrix.os }} steps: @@ -36,7 +36,7 @@ jobs: pip --version - name: Run tests run: | - python -m unittest discover haas + python -m unittest discover -v -t .haas python -m haas haas lint: runs-on: ubuntu-latest