From a0e792f060484abc53972d8ce2046b13e77064c5 Mon Sep 17 00:00:00 2001 From: Steve Goldman <32876747+s-goldman@users.noreply.github.com> Date: Thu, 4 Apr 2024 13:01:20 -0400 Subject: [PATCH] Fix jenkins pytests (#1772) --- JenkinsfileRT | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/JenkinsfileRT b/JenkinsfileRT index 4e6d414ef..53f5b50c2 100644 --- a/JenkinsfileRT +++ b/JenkinsfileRT @@ -38,12 +38,12 @@ bc2.conda_packages = ['python=3.10'] bc2.build_cmds = ["pip install numpy astropy codecov pytest-cov ci-watson || true", "pip install -r requirements-dev.txt --upgrade -e '.[test]' || true", "pip freeze || true"] -bc2.test_cmds = ["pytest --cov=./ --basetemp=tests_output --junitxml=results.xml --bigdata || true", +bc1.test_cmds = ["pytest --cov=./ --basetemp=tests_output --junitxml=results.xml --bigdata || true", "codecov || true"] -bc2.test_configs = [data_config] +bc1.test_configs = [data_config] // Apply a large failure threshold to prevent marking the pipeline job failed // when xunit ingests any test results -bc2.failedFailureThresh = 1000 +bc1.failedFailureThresh = 1000 bc3 = new BuildConfig() bc3.runtime.add('CFLAGS=-std=gnu99')