Skip to content

Commit

Permalink
move tox config to tox.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
markdboyd committed Jan 29, 2024
1 parent df38f38 commit 3764e3d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 18 deletions.
18 changes: 0 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,3 @@ exclude = '''
)/
)
'''

[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py3{8,9,10,11,12}-django{40,41,42}
isolated_build=true
[testenv:py3{8,9,10,11,12}]
deps =
-rrequirements-tests.txt
-rrequirements-dev.txt
django40: Django>=4.0,<4.1
django41: Django>=4.1,<4.2
django42: Django>=4.2,<4.3
commands =
python -m uaa_client.runtests
python -m mypy uaa_client
"""
14 changes: 14 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[tox]
envlist = py3{8,9,10,11,12}-django{40,41,42}
isolated_build = true

[testenv:py3{8,9,10,11,12}]
deps =
-rrequirements-tests.txt
-rrequirements-dev.txt
django40: Django>=4.0,<4.1
django41: Django>=4.1,<4.2
django42: Django>=4.2,<4.3
commands =
python -m uaa_client.runtests -v
python -m mypy uaa_client -v

0 comments on commit 3764e3d

Please sign in to comment.