From e9bc25cce0616b6cf1d14c4aab61b87b13617711 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Tue, 4 Jun 2019 14:42:49 +0200 Subject: [PATCH] Run all tests for jupyter_server regardless of failure --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 02c0645c..19f05529 100644 --- a/.travis.yml +++ b/.travis.yml @@ -65,7 +65,8 @@ script: if [[ "$TEST" == "jupyter_server" ]]; then pip uninstall notebook --yes pip install jupyter_server - pytest -v --maxfail=2 --cov=jupyterhub jupyterhub/tests + # Run all tests regardless of failure, so we know what's up + pytest -v --cov=jupyterhub jupyterhub/tests # Make sure that the notebook package is still not installed pip list | grep notebook test $? -eq 1