Skip to content

Commit

Permalink
testing more recent ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
nickzoic committed Jun 27, 2023
1 parent ca24d15 commit 2f7cfe3
Showing 1 changed file with 36 additions and 1 deletion.
37 changes: 36 additions & 1 deletion .github/workflows/run-tests-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- run: sudo apt install xvfb
- run: pip install --upgrade pip
- run: pip install .[dev]
- run: xvfb-run pytest tests/
# - run: xvfb-run pytest tests/
- run: tests/cmd_tests.sh

run-tests-ubuntu-22_04-python-3_10:
Expand Down Expand Up @@ -83,6 +83,19 @@ jobs:
- run: pip install .[dev]
- run: xvfb-run pytest tests/

run-tests-ubuntu-22_04-python-3_11:
runs-on: ubuntu-22.04
name: Ubuntu 22.04, Python 3.11
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- run: sudo apt install xvfb
- run: pip install --upgrade pip
- run: pip install .[dev]
- run: xvfb-run pytest tests/

# run-tests-ubuntu-22_04-python-3_12_0_alpha5:
# runs-on: ubuntu-22.04
# name: Ubuntu 22.04, Python 3.12.0alpha5
Expand All @@ -107,6 +120,28 @@ jobs:
- run: xvfb-run python3.11 -mpytest tests/
- run: tests/cmd_tests.sh

run-tests-ubuntu-22_10-python-3_11_from_apt:
runs-on: ubuntu-22.10
name: Ubuntu 22.10, Python from Apt
steps:
- uses: actions/checkout@v3
- run: sudo apt install python3.11-full python3-pip xvfb
- run: python3.11 -m pip install --upgrade pip
- run: python3.11 -m pip install -e .[dev]
- run: xvfb-run python3.11 -mpytest tests/
- run: tests/cmd_tests.sh

run-tests-ubuntu-23_04-python-3_11_from_apt:
runs-on: ubuntu-23.04
name: Ubuntu 23.04, Python from Apt
steps:
- uses: actions/checkout@v3
- run: sudo apt install python3.11-full python3-pip xvfb
- run: python3.11 -m pip install --upgrade pip
- run: python3.11 -m pip install -e .[dev]
- run: xvfb-run python3.11 -mpytest tests/
- run: tests/cmd_tests.sh

# run-tests-ubuntu-22_04-pypy3:
# runs-on: ubuntu-22.04
# name: Ubuntu 22.04, PyPy 3
Expand Down

0 comments on commit 2f7cfe3

Please sign in to comment.