forked from AlexShkarin/pyLabLib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
67 lines (65 loc) · 1.99 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# tox (https://tox.readthedocs.io/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = lpy{36,37,38,39}, lpy{36,37,38,39}_32
[testenv]
basepython =
lpy36: ../Distribs/Unpacked/python-3.6.8.amd64/python.exe
lpy37: ../Distribs/Unpacked/python-3.7.7.amd64/python.exe
lpy38: ../Distribs/Unpacked/python-3.8.9.amd64/python.exe
lpy39: ../Distribs/Unpacked/python-3.9.4.amd64/python.exe
lpy36_32: ../Distribs/Unpacked/python-3.6.8/python.exe
lpy37_32: ../Distribs/Unpacked/python-3.7.7/python.exe
lpy38_32: ../Distribs/Unpacked/python-3.8.9/python.exe
lpy39_32: ../Distribs/Unpacked/python-3.9.4/python.exe
changedir = tests
setenv =
PYTHONPATH =
deps =
pytest
serial_3_4: pyserial<3.5
serial_3_3: pyserial<3.4
serial_3_2: pyserial<3.3
serial_3_1: pyserial<3.2
serial_3_0: pyserial<3.1
serial_2_7: pyserial<3.0
ft232_11: pyft232==0.11
ft232_10: pyft232==0.10
ft232_9: pyft232==0.9
ft232_8: pyft232==0.8
ft232_7: pyft232==0.7
ft232_6: pyft232==0.6
ft232_5: pyft232==0.5
visa_1_10: pyvisa<1.11
visa_1_9: pyvisa<1.10
visa_1_8: pyvisa<1.09
visa_1_7: pyvisa<1.08
visa_1_6: pyvisa<1.07
usb_1_1_0: pyusb==1.1.0
usb_1_0_0: pyusb==1.0.0
np_1_20: numpy==1.20.0
np_1_19: numpy==1.19.0
np_1_18: numpy==1.18.0
np_1_17: numpy==1.17.0
np_1_16: numpy==1.16.0
np_1_15: numpy==1.15.0
scp_1_7: scipy==1.7.0
scp_1_6: scipy==1.6.0
scp_1_5: scipy==1.5.0
scp_1_4: scipy==1.4.0
scp_1_3: scipy==1.3.0
scp_1_2: scipy==1.2.0
scp_1_1: scipy==1.1.0
pd_1_2: pandas==1.2.0
pd_1_1: pandas==1.1.0
pd_1_0: pandas==1.0.0
pd_0_25: pandas==0.25.0
pd_0_24: pandas==0.24.0
pd_0_23: pandas==0.23.0
pd_0_22: pandas==0.22.0
pd_0_21: pandas==0.21.0
pd_0_20: pandas==0.20.0
commands =
pytest {posargs}