From 95c9f5e3bece6245ceec5950453deecf9df5c9eb Mon Sep 17 00:00:00 2001 From: Clarence Mah Date: Wed, 5 Jun 2024 13:46:05 -0700 Subject: [PATCH] switch to pytest from unittest --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 7596260..7430b90 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -36,7 +36,7 @@ jobs: # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics pip install coverage - coverage run -m unittest + coverage run -m pytest tests - name: Upload Coverage to Codecov if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10' }} uses: codecov/codecov-action@v1