From 18a143aa96a84e7fe82640f8d9ed8aa568b555e4 Mon Sep 17 00:00:00 2001 From: Rory Barnes Date: Fri, 20 Oct 2023 16:47:35 -0700 Subject: [PATCH] Removed coverage testing for Windows and MacOS. --- .github/workflows/tests-linux.yml | 4 ++-- .github/workflows/tests-macos.yml | 9 ++++----- .github/workflows/tests-windows.yml | 7 +++---- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/.github/workflows/tests-linux.yml b/.github/workflows/tests-linux.yml index 9c159a80f..e64f99d78 100644 --- a/.github/workflows/tests-linux.yml +++ b/.github/workflows/tests-linux.yml @@ -2,9 +2,9 @@ name: tests on: push: - branches: [master, main] + branches: [main] pull_request: - branches: [master, main] + branches: [main] workflow_dispatch: jobs: diff --git a/.github/workflows/tests-macos.yml b/.github/workflows/tests-macos.yml index a650814bc..6d0d9f302 100644 --- a/.github/workflows/tests-macos.yml +++ b/.github/workflows/tests-macos.yml @@ -2,9 +2,9 @@ name: tests on: push: - branches: [master, main] + branches: [main] pull_request: - branches: [master, main] + branches: [main] workflow_dispatch: jobs: @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [macos-11, macos-12, macos-13] - python-version: ['3.6', '3.7', 3.8', '3.9', '3.10', '3.11'] + python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] fail-fast: false steps: @@ -37,13 +37,12 @@ jobs: run: | python -m pip install -U pip python -m pip install -e . - sudo apt install lcov - name: Run tests and generate coverage if: steps.install.outcome == 'success' shell: bash -l {0} run: | - make coverage + make test - name: Get unique id id: unique-id diff --git a/.github/workflows/tests-windows.yml b/.github/workflows/tests-windows.yml index 3668dac97..5e69f10ba 100644 --- a/.github/workflows/tests-windows.yml +++ b/.github/workflows/tests-windows.yml @@ -2,9 +2,9 @@ name: tests on: push: - branches: [master, main] + branches: [main] pull_request: - branches: [master, main] + branches: [main] workflow_dispatch: jobs: @@ -37,13 +37,12 @@ jobs: run: | python -m pip install -U pip python -m pip install -e . - sudo apt install lcov - name: Run tests and generate coverage if: steps.install.outcome == 'success' shell: bash -l {0} run: | - make coverage + make test - name: Get unique id id: unique-id