From e55d784c6bcad0f8f8ad82f17e6c16cc471307c8 Mon Sep 17 00:00:00 2001 From: Alex Laird Date: Wed, 27 Dec 2023 08:33:00 -0600 Subject: [PATCH] Testing if Windows conditional is no longer needed with latest GitHub Actions runners. --- .github/workflows/build.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1ea47d3..79e1dde 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -55,12 +55,7 @@ jobs: - name: Install dependencies run: make install - name: Test - run: | - if [ "$RUNNER_OS" == "Windows" ]; then - coverage run -m unittest discover -b; - else - make test - fi + run: make test shell: bash - name: Build docs run: make docs