We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f87049 commit d6ada55Copy full SHA for d6ada55
.travis.yml
@@ -178,7 +178,8 @@ install:
178
$PYTEST_PEP8 \
179
pytest-rerunfailures \
180
pytest-timeout \
181
- pytest-xdist
+ pytest-xdist \
182
+ tox
183
- |
184
# Install matplotlib
185
python -mpip install -ve .
@@ -195,6 +196,7 @@ before_script: |
195
196
script: |
197
echo "Calling pytest with the following arguments: $PYTEST_ADDOPTS"
198
python -mpytest
199
+ tox -e pytz
200
201
before_cache: |
202
rm -rf $HOME/.cache/matplotlib/tex.cache
tox.ini
@@ -14,3 +14,11 @@ commands =
14
deps =
15
numpy
16
pytest
17
+
18
+[testenv:pytz]
19
+changedir = /tmp
20
+commands =
21
+ pytest -m pytz {toxinidir}
22
+deps =
23
+ pytest
24
+ pytz
0 commit comments