forked from talonlab/python-hdwallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
45 lines (39 loc) · 1.05 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
44
45
[tox]
envlist = python36,python37,python38,python39,python310
[travis]
python =
3.6: python36
3.7: python37
3.8: python38
3.9: python39
3.10: python310
[testenv:python36]
install_command =
python -m pip install --upgrade pip {opts} {packages}
pip install -e . {opts} {packages}
extras = cli,tests,docs
commands = python -m pytest
[testenv:python37]
install_command =
python -m pip install --upgrade pip {opts} {packages}
pip install -e . {opts} {packages}
extras = cli,tests,docs
commands = python -m pytest
[testenv:python38]
install_command =
python -m pip install --upgrade pip {opts} {packages}
pip install -e . {opts} {packages}
extras = cli,tests,docs
commands = python -m pytest
[testenv:python39]
install_command =
python -m pip install --upgrade pip {opts} {packages}
pip install -e . {opts} {packages}
extras = cli,tests,docs
commands = python -m pytest
[testenv:python310]
install_command =
python -m pip install --upgrade pip {opts} {packages}
pip install -e . {opts} {packages}
extras = cli,tests,docs
commands = python -m pytest