Skip to content

Commit

Permalink
Trying again to fix MacOS runner
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwright committed Oct 23, 2023
1 parent ea5a94b commit eb5a2da
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.10"]
os: [ubuntu-latest, windows-latest] # , macos-latest
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install CadQuery and pytest
run: |
pip install --upgrade pip
pip install -e .
pip install -e .[dev]
pip3 install --upgrade pip
pip3 install -e .
pip3 install -e .[dev]
- name: Run tests
run: |
pytest -v
python3 -m pytest -v

0 comments on commit eb5a2da

Please sign in to comment.