-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathtox.ini
43 lines (38 loc) · 1.07 KB
/
tox.ini
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 =
py38,
py39,
py310,
py311
skipsdist=True
skip_missing_interpreters = True
[darglint]
ignore=DAR101
[testenv:py38]
basepython = python3.8
whitelist_externals = /bin/bash
commands =
bash -c \'cat requirements.txt | xargs -L 1 pip install\'
bash -c \'cat requirements-dev.txt | xargs -L 1 pip install'
python -m unittest discover
[testenv:py39]
basepython = python3.9
whitelist_externals = /bin/bash
commands =
bash -c \'cat requirements.txt | xargs -L 1 pip install\'
bash -c \'cat requirements-dev.txt | xargs -L 1 pip install'
python -m unittest discover
[testenv:py310]
basepython = python3.10
whitelist_externals = /bin/bash
commands =
bash -c \'cat requirements.txt | xargs -L 1 pip install\'
bash -c \'cat requirements-dev.txt | xargs -L 1 pip install'
python -m unittest discover
[testenv:py311]
basepython = python3.11
whitelist_externals = /bin/bash
commands =
bash -c \'cat requirements.txt | xargs -L 1 pip install\'
bash -c \'cat requirements-dev.txt | xargs -L 1 pip install'
python -m unittest discover