Skip to content

Commit cf55aae

Browse files
committed
Corrected testing configuration
1 parent ca906e6 commit cf55aae

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ install:
3737
# tox is required for the tests
3838
- pip install tox
3939
script:
40+
# Code is checked
41+
- ~/.scripts/python/run_tests.sh true check
4042
# Tests are run
4143
- ~/.scripts/python/run_tests.sh true $PYTHON_VERSION_TEST
4244
# Documentation tests are run

tox.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[tox]
22
envlist =
3-
{py27,pypy},
4-
{py33,py34,py35,pypy3},
5-
{docs},
6-
{coverage}
3+
py{27,33,34,35},
4+
pypy{,3},
5+
check,
6+
docs,
7+
coverage
78
skip_missing_interpreters =
89
true
910

@@ -32,7 +33,6 @@ deps =
3233
check-manifest
3334
flake8
3435
readme
35-
pygments
3636
commands =
3737
python setup.py check --strict --metadata --restructuredtext
3838
check-manifest {toxinidir}
@@ -46,4 +46,4 @@ deps =
4646
sphinx
4747
commands =
4848
sphinx-build -b linkcheck ./ {envtmpdir}/html
49-
sphinx-build -W -b html -d {envtmpdir}/doctrees ./ {envtmpdir}/html
49+
sphinx-build -nW -b html -d {envtmpdir}/doctrees ./ {envtmpdir}/html

0 commit comments

Comments
 (0)