Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
nickzoic committed Aug 27, 2024
1 parent 7814a30 commit 59a26fd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/run-tests-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: sudo apt install python3.12-full python3-pip xvfb
- run: python3.12 -m pip install --upgrade pip
- run: python3.12 -m pip install -e .[dev]
- run: xvfb-run python3.12 -mpytest tests/
- run: python3.12 -m venv /tmp/venv
- run: /tmp/venv/bin/python -m pip install --upgrade pip
- run: /tmp/venv/bin/python -m pip install -e .[dev]
- run: xvfb-run /tmp/venv/bin/python -m pytest tests/

# run-tests-ubuntu-22_04-pypy3:
# runs-on: ubuntu-22.04
Expand Down

0 comments on commit 59a26fd

Please sign in to comment.