forked from zhmcclient/python-zhmcclient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
119 lines (105 loc) · 1.98 KB
/
Copy pathtox.ini
File metadata and controls
119 lines (105 loc) · 1.98 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# -----------------------------------------------------------------------------
# Tox config file for the zhmcclient project
#
# Supported OS platforms:
# Linux
# Windows (native and in UNIX-like environments)
# OS-X
[tox]
minversion = 2.0
envlist =
py39
py310
py311
py312
win64_py39_32
win64_py39_64
win64_py310_32
win64_py310_64
win64_py311_32
win64_py311_64
win64_py312_32
win64_py312_64
skip_missing_interpreters = true
skipsdist = true
[testenv]
skip_install = true
passenv =
ProgramFiles
APPVEYOR
USER
LNAME
USERNAME
HOME
USERPROFILE
OS
PATH
PYTHONPATH
INCLUDE
CPATH
LIB
LIBRARY_PATH
SHELL
PWD
TESTCASES
TESTHMC
TESTLOGFILE
PACKAGE_LEVEL
PYTHON_CMD
PIP_CMD
whitelist_externals =
make
commands =
make platform pip_list env test debuginfo
[testenv:py39]
platform = linux2|darwin
basepython = python3.9
[testenv:py310]
platform = linux2|darwin
basepython = python3.10
[testenv:py311]
platform = linux2|darwin
basepython = python3.11
[testenv:py312]
platform = linux2|darwin
basepython = python3.12
[testenv:win64_py39_32]
platform = win32
basepython = python
setenv =
PATH = C:\Python39;{env:PATH}
[testenv:win64_py39_64]
platform = win32
basepython = python
setenv =
PATH = C:\Python39-x64;{env:PATH}
[testenv:win64_py310_32]
platform = win32
basepython = python
setenv =
PATH = C:\Python310;{env:PATH}
[testenv:win64_py310_64]
platform = win32
basepython = python
setenv =
PATH = C:\Python310-x64;{env:PATH}
[testenv:win64_py311_32]
platform = win32
basepython = python
setenv =
PATH = C:\Python311;{env:PATH}
[testenv:win64_py311_64]
platform = win32
basepython = python
setenv =
PATH = C:\Python311-x64;{env:PATH}
[testenv:win64_py312_32]
platform = win32
basepython = python
setenv =
PATH = C:\Python312;{env:PATH}
[testenv:win64_py312_64]
platform = win32
basepython = python
setenv =
PATH = C:\Python312-x64;{env:PATH}