-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
92 lines (77 loc) · 3.18 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
87
88
89
90
91
92
[tox]
envlist =
py27-py4j0821,
py27-py4j092,
py27-py4j0100
py27-py4j0101
py27-py4j0102
py27-py4j0103
py27-py4jmaster
py35-py4j0821,
py35-py4j092,
py35-py4j0100
py35-py4j0101
py35-py4j0102
py35-py4j0103
py35-py4jmaster
skipsdist = True
[testenv]
passenv =
PY4J_BENCHMARK_SKIP,
PY4J_BENCHMARK_ONLY
[testenv:py27-py4j0821]
basepython = python2.7
deps = py4j==0.8.2.1
commands = python py4jbench.py --verbose --csv-output report.csv --append-to-csv .tox/py27-py4j0821/share/py4j/py4j0.8.2.1.jar
[testenv:py27-py4j092]
basepython = python2.7
deps = py4j==0.9.2
commands = python py4jbench.py --verbose --csv-output report.csv --append-to-csv .tox/py27-py4j092/share/py4j/py4j0.9.2.jar
[testenv:py27-py4j0100]
basepython = python2.7
deps = py4j==0.10.0
commands = python py4jbench.py --verbose --csv-output report.csv --append-to-csv .tox/py27-py4j0100/share/py4j/py4j0.10.0.jar
[testenv:py27-py4j0101]
basepython = python2.7
deps = py4j==0.10.1
commands = python py4jbench.py --verbose --csv-output report.csv --append-to-csv .tox/py27-py4j0101/share/py4j/py4j0.10.1.jar
[testenv:py27-py4j0102]
basepython = python2.7
deps = py4j==0.10.2
commands = python py4jbench.py --verbose --csv-output report.csv --append-to-csv .tox/py27-py4j0102/share/py4j/py4j0.10.2.jar
[testenv:py27-py4j0103]
basepython = python2.7
deps = py4j==0.10.3
commands = python py4jbench.py --verbose --csv-output report.csv --append-to-csv .tox/py27-py4j0103/share/py4j/py4j0.10.3.jar
[testenv:py27-py4jmaster]
basepython = python2.7
deps = git+https://github.com/bartdag/py4j.git@master#egg=py4j
commands = python py4jbench.py --verbose --csv-output report.csv --append-to-csv .tox/py27-py4jmaster/share/py4j/py4j0.10.3.jar
[testenv:py35-py4j0821]
basepython = python3.5
deps = py4j==0.8.2.1
commands = python py4jbench.py --verbose --csv-output report.csv --skip both-extra-large-bytes --append-to-csv .tox/py35-py4j0821/share/py4j/py4j0.8.2.1.jar
[testenv:py35-py4j092]
basepython = python3.5
deps = py4j==0.9.2
commands = python py4jbench.py --verbose --csv-output report.csv --skip both-extra-large-bytes --append-to-csv .tox/py35-py4j092/share/py4j/py4j0.9.2.jar
[testenv:py35-py4j0100]
basepython = python3.5
deps = py4j==0.10.0
commands = python py4jbench.py --verbose --csv-output report.csv --skip both-extra-large-bytes --append-to-csv .tox/py35-py4j0100/share/py4j/py4j0.10.0.jar
[testenv:py35-py4j0101]
basepython = python3.5
deps = py4j==0.10.1
commands = python py4jbench.py --verbose --csv-output report.csv --append-to-csv .tox/py35-py4j0101/share/py4j/py4j0.10.1.jar
[testenv:py35-py4j0102]
basepython = python3.5
deps = py4j==0.10.2
commands = python py4jbench.py --verbose --csv-output report.csv --append-to-csv .tox/py35-py4j0102/share/py4j/py4j0.10.2.jar
[testenv:py35-py4j0103]
basepython = python3.5
deps = py4j==0.10.3
commands = python py4jbench.py --verbose --csv-output report.csv --append-to-csv .tox/py35-py4j0103/share/py4j/py4j0.10.3.jar
[testenv:py35-py4jmaster]
basepython = python3.5
deps = git+https://github.com/bartdag/py4j.git@master#egg=py4j
commands = python py4jbench.py --verbose --csv-output report.csv --append-to-csv .tox/py35-py4jmaster/share/py4j/py4j0.10.3.jar