Do not store local testresults on Travis run.

This commit is contained in:
Bastian Kleineidam 2013-02-27 19:39:09 +01:00
parent bbb273c82e
commit 263742c92a
2 changed files with 2 additions and 2 deletions

View File

@ -15,6 +15,6 @@ before_install:
install: install:
- pip install -r requirements.txt --use-mirrors - pip install -r requirements.txt --use-mirrors
# command to run tests # command to run tests
script: make test script: make test PYTESTOPTS=-s
#notifications: #notifications:
# email: false # email: false

View File

@ -22,7 +22,7 @@ endif
# Pytest options: # Pytest options:
# --resultlog: write test results in file # --resultlog: write test results in file
# -s: do not capture stdout/stderr (some tests fail otherwise) # -s: do not capture stdout/stderr (some tests fail otherwise)
PYTESTOPTS:=--resultlog=testresults.txt -s --durations=0 PYTESTOPTS?=--resultlog=testresults.txt -s --durations=0
# which test modules to run # which test modules to run
TESTS ?= tests/ TESTS ?= tests/
# set test options # set test options