From 3df03c28f5d826ff8d5b502d73590697ab8b4759 Mon Sep 17 00:00:00 2001 From: Jitse Niesen Date: Tue, 30 Jul 2024 13:58:52 +0100 Subject: [PATCH] Testing: simplify, show debug info --- .github/workflows/run-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index d65fbee..e2655d3 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - OS: ['ubuntu', 'macos', 'windows'] + OS: ['ubuntu'] PYTHON_VERSION: ['3.9', '3.10', '3.11'] SPYDER_SOURCE: ['git'] name: ${{ matrix.OS }} py${{ matrix.PYTHON_VERSION }} spyder-from-${{ matrix.SPYDER_SOURCE }} @@ -95,11 +95,11 @@ jobs: uses: nick-fields/retry@v3 with: timeout_minutes: 10 - max_attempts: 3 + max_attempts: 1 shell: bash command: | . ~/.profile - xvfb-run --auto-servernum pytest --exitfirst spyder-notebook/spyder_notebook -vv + xvfb-run --auto-servernum pytest --log-level=DEBUG --exitfirst spyder-notebook/spyder_notebook -vv - name: Run tests (MacOS) if: matrix.OS == 'macos' uses: nick-fields/retry@v3