diff options
author | YAMAMOTO Takashi <yamamoto@valinux.co.jp> | 2013-09-03 16:53:35 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-09-08 17:47:52 +0900 |
commit | f06df9713d63851cefd9cd578138ac6b06a285a3 (patch) | |
tree | b2410b5a8a720099aec91504e2dfbc304881f7e3 | |
parent | e472f943ec1c5decaad6c61a06f1acd7911df0a5 (diff) |
use run_tests.sh -N for Travis CI
this avoids interfering Travis CI's use of virtualenv.
Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index d7c6953b..7d2f1918 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ python: - "2.7" install: - - "pip install -r tools/pip-requires --use-mirrors" + - "pip install -r tools/pip-requires -r tools/test-requires --use-mirrors" script: - - "./run_tests.sh -V" + - "./run_tests.sh -N" |