Skip to content

Commit

Permalink
Removed coverage testing for Windows and MacOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rory Barnes committed Oct 20, 2023
1 parent 4444cac commit 18a143a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: tests

on:
push:
branches: [master, main]
branches: [main]
pull_request:
branches: [master, main]
branches: [main]
workflow_dispatch:

jobs:
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/tests-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: tests

on:
push:
branches: [master, main]
branches: [main]
pull_request:
branches: [master, main]
branches: [main]
workflow_dispatch:

jobs:
Expand All @@ -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:
Expand All @@ -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
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/tests-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: tests

on:
push:
branches: [master, main]
branches: [main]
pull_request:
branches: [master, main]
branches: [main]
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 18a143a

Please sign in to comment.