From 8bff302888ab9e0464bb8661e706b76f4e83a4eb Mon Sep 17 00:00:00 2001 From: Elias Mueller Date: Fri, 26 Jan 2024 22:09:48 +0100 Subject: [PATCH] ci: replace pytest with unittest Using pytest, we run into access violation errors on Windows. They disappear when we use the unittest module. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7387873..52eb072 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -60,7 +60,7 @@ jobs: function execute() { echo -e "\033[0;34m$*\033[0m"; "$@"; } execute source venv/bin/activate - execute xvfb-run python -m pytest + execute xvfb-run python -m unittest test-windows: runs-on: windows-latest