From 8f6714f3de7ac3810a7de063b983ec8254fee4ac Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Fri, 8 Mar 2024 08:47:30 +0000 Subject: [PATCH] Don't run tests under xvfb-run unnecessarily --- .github/workflows/test-with-pypi.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/test-with-pypi.yml b/.github/workflows/test-with-pypi.yml index 13058c5..9bd9068 100644 --- a/.github/workflows/test-with-pypi.yml +++ b/.github/workflows/test-with-pypi.yml @@ -24,14 +24,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install package under test run: python -m pip install . - - name: Run tests (Ubuntu) - if: matrix.os == 'ubuntu-latest' - run: | - mkdir testdir - cd testdir - xvfb-run -a python -X faulthandler -m unittest discover -v scimath - - name: Run tests (not Ubuntu) - if: matrix.os != 'ubuntu-latest' + - name: Run tests run: | mkdir testdir cd testdir