-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
86 lines (75 loc) · 1.11 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Tox config file for macos-oslog project.
#
# Supported platforms:
# macOS
[tox]
minversion = 2.0
envlist =
py27
py35
py36
py37
py38
py39
py310
skip_missing_interpreters = false
skipsdist = true
[testenv]
skip_install = true
passenv =
ProgramFiles
USER
LNAME
USERNAME
HOME
USERPROFILE
OS
PATH
PYTHONPATH
INCLUDE
CPATH
CFLAGS
LANG
LC_ALL
LC_CTYPE
LIB
LIBRARY_PATH
LDFLAGS
SWIG_FEATURES
SHELL
PWD
TESTCASES
TESTHMC
TESTLOGFILE
PACKAGE_LEVEL
PYTHON_CMD
PIP_CMD
whitelist_externals =
make
commands =
make platform pip_list env
make install
make develop
make check
make test
[testenv:py27]
platform = darwin
basepython = python2.7
[testenv:py35]
platform = darwin
basepython = python3.5
[testenv:py36]
platform = darwin
basepython = python3.6
[testenv:py37]
platform = darwin
basepython = python3.7
[testenv:py38]
platform = darwin
basepython = python3.8
[testenv:py39]
platform = darwin
basepython = python3.9
[testenv:py310]
platform = darwin
basepython = python3.10