Skip to content

Commit

Permalink
Test for all Python 3 versions above 3.11
Browse files Browse the repository at this point in the history
Signed-off-by: Akashdeep Dhar <[email protected]>
  • Loading branch information
gridhead committed Jan 16, 2025
1 parent 9462a15 commit 7410bad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
fail-fast: false
matrix:
tox-env: ["py311"]
tox-env: ["py311", "py312", "py313"]
runs-on: ubuntu-latest
container: fedorapython/fedora-python-tox:latest
steps:
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 3.11.0
envlist = py311,cleaning
envlist = py{311,312,313},cleaning
isolated_build = true
skip_missing_interpreters = true

Expand All @@ -20,7 +20,7 @@ deps =
commands_pre =
poetry install --all-extras
commands =
poetry run pytest -o 'addopts=--cov-config .coveragerc --cov=pagure_exporter --cov-report term-missing --cov-report xml --cov-report html --record-mode=new_episodes' test/ {posargs} -vvv
poetry run pytest -o 'addopts=--cov-config .coveragerc --cov=pagure_exporter --cov-report term-missing --cov-report xml --cov-report html --record-mode=none' test/ {posargs} -vvv

# To let your instances of `print` commands appear on stdout in the tests for debugging, use `pytest -s` on the above command.

Expand Down

0 comments on commit 7410bad

Please sign in to comment.