Skip to content

Commit

Permalink
tests: make tox tests working
Browse files Browse the repository at this point in the history
  • Loading branch information
praiskup committed Oct 3, 2024
1 parent 32bd759 commit e310fd0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/fedora-tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
11 changes: 11 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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}

0 comments on commit e310fd0

Please sign in to comment.