Skip to content

Commit

Permalink
Debugging coverage run, see if the process is still running
Browse files Browse the repository at this point in the history
  • Loading branch information
viklund committed Apr 4, 2018
1 parent d2dddeb commit 0e6453e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/travis_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,16 @@ python backend/test.py -v

kill -2 $BACKEND_PID
sleep 2
if kill -0 $BACKEND_PID 2>/dev/null; then
echo "STILL RUNNING!";
sleep 2
kill -15 $BACKEND_PID
sleep 2
fi

if kill -0 $BACKEND_PID 2>/dev/null; then
echo "STILL RUNNING!???";
fi

coveralls
coverage report

0 comments on commit 0e6453e

Please sign in to comment.