File: tox.ini

package info (click to toggle)
multiprocess 0.70.17-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 9,900 kB
  • sloc: python: 70,095; ansic: 7,509; makefile: 16
file content (33 lines) | stat: -rw-r--r-- 843 bytes parent folder | download
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
[tox]
skipdist=True
skip_missing_interpreters=
    True
envlist =
    py38
    py39
    py310
    py311
    py312
    py313
    pypy38
    pypy39
    pypy310

[testenv]
setenv =
#    recreate = True
deps =
#   dill
whitelist_externals =
#   bash
commands =
    {envpython} -m pip install .
    py38: {envpython} py3.8/multiprocess/tests/__main__.py
    py39: {envpython} py3.9/multiprocess/tests/__main__.py
    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
    pypy38: {envpython} pypy3.8/multiprocess/tests/__main__.py
    pypy39: {envpython} pypy3.9/multiprocess/tests/__main__.py
    pypy310: {envpython} pypy3.10/multiprocess/tests/__main__.py