From 7a626b679a0b7a9cdb15b3ac9b10de54ae5ed863 Mon Sep 17 00:00:00 2001 From: Daniel <daniel@harvey> Date: Tue, 10 Mar 2020 17:35:00 +0100 Subject: [PATCH] ENH: Don't stop at first failing test, run them all. --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 65f02ae..15ee5c1 100644 --- a/tox.ini +++ b/tox.ini @@ -7,4 +7,5 @@ deps=pytest nose pytest-cov commands_pre=pip install ../caosdb-pylib/ -commands=pytest --cov=caosdb -vvx {posargs} +# Add "-x" to stop at first error. +commands=pytest --cov=caosdb -vv {posargs} -- GitLab