Skip to content

Commit

Permalink
macos: fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonish committed Nov 27, 2024
1 parent f506c37 commit d9f4219
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,17 @@ jobs:
runs-on: macos-latest
steps:
- run: brew install python
- run: pip3 install PyYAML
- run: pip3 install pytest
- uses: actions/checkout@v1
- run: PYTHONPATH=. python3 -m pytest
- run: PYTHONPATH=. python3 ./tests/integration_tests.py
- name: Create Python virtual environment
run: python3 -m venv ./testenv
- name: Install PyYAML
run: |
. ./testenv/bin/activate
pip install pyyaml
- run: |
. ./testenv/bin/activate
PYTHONPATH=. python3 -m pytest
- run: |
. ./testenv/bin/activate
PYTHONPATH=. python3 ./tests/integration_tests.py

0 comments on commit d9f4219

Please sign in to comment.