From 9b18133d66abd9dae0a24592cb8aeb9e6d4946f0 Mon Sep 17 00:00:00 2001 From: Matthew Bourque Date: Fri, 22 Jun 2018 15:22:22 -0400 Subject: [PATCH] Unsurpressing output for pytest --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6b9dd4be0..15fa2d9d6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,12 +7,12 @@ bc0.nodetype = "linux-stable" bc0.name = "debug" bc0.build_cmds = ["conda env update --file=environment.yml", "with_env -n jwql python setup.py install"] -bc0.test_cmds = ["with_env -n jwql pytest --junitxml=result.xml"] +bc0.test_cmds = ["with_env -n jwql pytest -s --junitxml=result.xml"] bc0.failedUnstableThresh = 1 bc0.failedFailureThresh = 1 - - + + // bc1 = utils.copy(bc0) // bc1.build_cmds[0] = "conda install -q -y python=3.5"