Skip to content

Commit

Permalink
check runner name instead of os
Browse files Browse the repository at this point in the history
  • Loading branch information
sibocw committed Feb 5, 2025
1 parent c989d3d commit 217ac21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_poetry_lock.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ jobs:
pipx install poetry
- name: Install dependencies with poetry and run tests (Linux/Windows/macOS Apple Silicon)
if: runner.os != 'macos-13'
if: runner.name != 'macos-13'
run: |
poetry install --extras=dev --extras=examples
poetry run pytest
- name: Install dependencies with poetry (macOS Intel)
if: runner.os == 'macos-13'
if: runner.name == 'macos-13'
run: |
poetry install --extras=dev
echo "Tests skipped on macOS Intel; see issue #233"

0 comments on commit 217ac21

Please sign in to comment.