From c5c5e864c26761d4e876cbdae03c55e4aa350638 Mon Sep 17 00:00:00 2001 From: Mikkel Paltorp Schmitt Date: Tue, 17 Oct 2023 17:41:32 +0200 Subject: [PATCH] Update python-app.yml Fixing to indicate that unittest (not pytest) is used. --- .github/workflows/python-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 8430e28..a55a58d 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -25,6 +25,6 @@ jobs: python -m pip install --upgrade pip pip install numpy if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - - name: Test with pytest + - name: Test with unittest run: | python3 -m unittest tests/test_egrssmatrix.py