Do not store local testresults on Travis run.
This commit is contained in:
parent
bbb273c82e
commit
263742c92a
|
@ -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
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue