Reduce pytest output on CI.

We don't need -v anymore as pytest 2.9 will display full diffs either way.
This commit is contained in:
Florian Bruhin 2016-03-02 07:12:47 +01:00
parent 531f4a85ff
commit 1169d5ac52
2 changed files with 2 additions and 2 deletions

View File

@ -14,4 +14,4 @@ install:
- C:\Python27\python -u scripts\dev\ci_install.py
test_script:
- C:\Python34\Scripts\tox -e %TESTENV% -- -v --junitxml=junit.xml
- C:\Python34\Scripts\tox -e %TESTENV% -- --junitxml=junit.xml

View File

@ -34,7 +34,7 @@ install:
- python scripts/dev/ci_install.py
script:
- tox -e $TESTENV -- -v --cov-report term tests
- tox -e $TESTENV -- tests
after_success:
- '[[ $TESTENV == *-cov ]] && codecov -e TESTENV -X gcov'