-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtox.ini
More file actions
43 lines (39 loc) · 900 Bytes
/
tox.ini
File metadata and controls
43 lines (39 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[tox]
envlist = py{310,311,312,313,314}
isolated_build = True
[gh-actions]
python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313
3.14: py314
[testenv:.pkg]
set_env =
RELEASE_VERSION=1.2.3
[testenv]
wheel_build_env = .pkg
use_develop = true
package = wheel
deps =
requests>=2.32.0
mock
pytest
pytest-httpserver
commands =
pytest
; Uncomment the following lines to specify base Python versions for each environment when using asdf
;[testenv:py310]
;basepython = {env:HOME}/.asdf/installs/python/3.10.18/bin/python
;
;[testenv:py311]
;basepython = {env:HOME}/.asdf/installs/python/3.11.13/bin/python
;
;[testenv:py312]
;basepython = {env:HOME}/.asdf/installs/python/3.12.11/bin/python
;
;[testenv:py313]
;basepython = {env:HOME}/.asdf/installs/python/3.13.5/bin/python
;
;[testenv:py314]
;basepython = {env:HOME}/.asdf/installs/python/3.14.1/bin/python