From 759ee66c764b1307762f21df3b934658bb00e71f Mon Sep 17 00:00:00 2001 From: Adrian Vladu Date: Fri, 3 Nov 2023 13:58:32 +0200 Subject: [PATCH] github_actions: use unittest instead of nose --- .github/workflows/pymi-cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pymi-cd.yml b/.github/workflows/pymi-cd.yml index 8aa443e..11264d6 100644 --- a/.github/workflows/pymi-cd.yml +++ b/.github/workflows/pymi-cd.yml @@ -24,7 +24,7 @@ jobs: pip install -r requirements.txt || exit /b pip install nose testtools wheel || exit /b pip install . || exit /b - nosetests wmi || exit /b + python -m unittest discover || exit /b python setup.py bdist_wheel || exit /b - uses: actions/upload-artifact@v4 with: