diff --git a/.github/workflows/fedora-tox.yml b/.github/workflows/fedora-tox.yml index c2532dcb..a23d328b 100644 --- a/.github/workflows/fedora-tox.yml +++ b/.github/workflows/fedora-tox.yml @@ -21,9 +21,13 @@ jobs: strategy: matrix: tox_env: + # sync with /tox.ini + - py36 - py37 - - py310 - py311 + - py312 + - py313 + dnf_install: python3-dnf # Use GitHub's Linux Docker host runs-on: ubuntu-latest diff --git a/tox.ini b/tox.ini index 42585570..ef40c28a 100644 --- a/tox.ini +++ b/tox.ini @@ -8,3 +8,14 @@ ignore=E124,E125,E127,E128,E501 # Exclude the build directory that distutils creates exclude=build/* max-line-length=120 + + +[tox] +# sync with /.github/workflows/fedora-tox.yml +envlist = py{36,37,311,312,313} +skipsdist = True + + +[testenv] +deps = nose +commands = nosetests {posargs}