From 73a331f3e5575529ab58cd38d32f586a74cf1b93 Mon Sep 17 00:00:00 2001 From: drewcassidy Date: Sun, 25 Apr 2021 15:58:38 -0700 Subject: [PATCH] Use correct test runner --- .github/workflows/python-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index b4598d9..777518e 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -31,8 +31,8 @@ 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 - - name: Test with nose - run: nosetests tests -d + - name: Run unit tests + run: python -m unittest -v deploy: needs: test