forked from hdwallet-io/python-hdwallet
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtox.ini
More file actions
45 lines (39 loc) · 1.06 KB
/
tox.ini
File metadata and controls
45 lines (39 loc) · 1.06 KB
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 = python37,python38,python39,python310,python311
[travis]
python =
3.7: python37
3.8: python38
3.9: python39
3.10: python310
3.11: python311
[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
[testenv:python311]
install_command =
python -m pip install --upgrade pip {opts} {packages}
pip install -e . {opts} {packages}
extras = cli,tests,docs
commands = python -m pytest