-
-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathtox.ini
More file actions
31 lines (30 loc) · 778 Bytes
/
tox.ini
File metadata and controls
31 lines (30 loc) · 778 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
[tox]
skipdist=True
skip_missing_interpreters=
True
envlist =
py310
py311
py312
py313
py314
py315
pypy310
pypy311
[testenv]
setenv =
# recreate = True
deps =
# dill
whitelist_externals =
# bash
commands =
{envpython} -m pip install .
py310: {envpython} py3.10/multiprocess/tests/__main__.py
py311: {envpython} py3.11/multiprocess/tests/__main__.py
py312: {envpython} py3.12/multiprocess/tests/__main__.py
py313: {envpython} py3.13/multiprocess/tests/__main__.py
py314: {envpython} py3.14/multiprocess/tests/__main__.py
py315: {envpython} py3.15/multiprocess/tests/__main__.py
pypy310: {envpython} pypy3.10/multiprocess/tests/__main__.py
pypy311: {envpython} pypy3.11/multiprocess/tests/__main__.py