Skip to content

Commit

Permalink
Fix deployment tests on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
giffels committed Nov 27, 2023
1 parent 9c23f13 commit 0a27b90
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/deployment-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,13 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Add Python 3.11 to GITHUB_PATH
run: echo "/Library/Frameworks/Python.framework/Versions/3.11/bin" >> $GITHUB_PATH
- name: Install dependencies on ${{ matrix.platform }}
run: |
export PATH=/Library/Frameworks/Python.framework/Versions/3.11/bin:$PATH
python3 -m pip install --upgrade pip
python3 -m pip install .[contrib]
python3 -m pip install coverage codecov
python3.11 -m pip install --upgrade pip
python3.11 -m pip install .[contrib]
python3.11 -m pip install coverage codecov
- name: Test with unittest on ${{ matrix.platform }}
run: |
coverage run -m unittest -v

0 comments on commit 0a27b90

Please sign in to comment.