From 4054797bd4eb26bfaa119a219a403c835d291756 Mon Sep 17 00:00:00 2001 From: restran Date: Mon, 29 May 2017 12:15:28 +0800 Subject: [PATCH] update --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 0f3c826..3909e1a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -81,9 +81,11 @@ before_script: sleep 1 coverage run -p --source=fomalhaut -m fomalhaut.runserver & server_pid_1=$! + echo server_pid_1 sleep 1 coverage run -p --source=fomalhaut -m fomalhaut.tests.api_server & server_pid_2=$! + echo server_pid_2 sleep 1 script: @@ -91,6 +93,7 @@ script: - coverage run -p --source=fomalhaut -m unittest discover -s fomalhaut -p "test_*.py" - kill -2 $server_pid_1 - kill -2 $server_pid_2 + - coverage run -p --source=fomalhaut -m fomalhaut.tests.stop_server - coverage combine - coverage report