@@ -18,7 +18,6 @@ whitelist_externals=
18
18
bash
19
19
setenv =
20
20
brief: HYPOTHESIS_PROFILE =speedy
21
- PYTEST_ADDOPTS =" -n 2"
22
21
passenv =
23
22
HOME
24
23
TOXENV
@@ -33,22 +32,22 @@ commands =
33
32
deps =
34
33
-rrequirements/test.txt
35
34
commands =
36
- python -m pytest tests/quality/
35
+ python -m pytest tests/quality/ -n2
37
36
38
37
[testenv:oldpy27]
39
38
basepython =python2.7.3
40
39
deps =
41
40
-rrequirements/test.txt
42
41
commands =
43
- python -m pytest tests/cover/
42
+ python -m pytest tests/cover/ -n2
44
43
45
44
[testenv:py27typing]
46
45
basepython =python2.7
47
46
deps =
48
47
-rrequirements/test.txt
49
48
-rrequirements/typing.txt
50
49
commands =
51
- python -m pytest tests/cover/
50
+ python -m pytest tests/cover/ -n2
52
51
53
52
[testenv:unicode]
54
53
basepython =python2.7
@@ -80,28 +79,28 @@ deps =
80
79
-rrequirements/test.txt
81
80
pandas~=0.19.2
82
81
commands =
83
- python -m pytest tests/pandas
82
+ python -m pytest tests/pandas -n2
84
83
85
84
[testenv:pandas20]
86
85
deps =
87
86
-rrequirements/test.txt
88
87
pandas~=0.20.3
89
88
commands =
90
- python -m pytest tests/pandas
89
+ python -m pytest tests/pandas -n2
91
90
92
91
[testenv:pandas21]
93
92
deps =
94
93
-rrequirements/test.txt
95
94
pandas~=0.21.0
96
95
commands =
97
- python -m pytest tests/pandas
96
+ python -m pytest tests/pandas -n2
98
97
99
98
[testenv:pandas22]
100
99
deps =
101
100
-rrequirements/test.txt
102
101
pandas~=0.22.0
103
102
commands =
104
- python -m pytest tests/pandas
103
+ python -m pytest tests/pandas -n2
105
104
106
105
107
106
[testenv:django18]
@@ -110,20 +109,20 @@ setenv=
110
109
commands =
111
110
pip install .[pytz]
112
111
pip install django~=1.8.18
113
- python -m tests.django.manage test tests.django
112
+ python -m tests.django.manage test tests.django -n2
114
113
115
114
[testenv:django111]
116
115
commands =
117
116
pip install .[pytz]
118
117
pip install django~=1.11.7
119
- python -m tests.django.manage test tests.django
118
+ python -m tests.django.manage test tests.django -n2
120
119
121
120
[testenv:django20]
122
121
basepython =python3
123
122
commands =
124
123
pip install .[pytz]
125
124
pip install django~=2.0.1
126
- python -m tests.django.manage test tests.django
125
+ python -m tests.django.manage test tests.django -n2
127
126
128
127
[testenv:nose]
129
128
deps =
0 commit comments