From da3288a793530aae8a9d6c20727d780554cd72f7 Mon Sep 17 00:00:00 2001 From: Zach Burnett Date: Mon, 5 Jun 2023 11:53:18 -0400 Subject: [PATCH] run pip list after installing override requirements --- JenkinsfileRT | 5 +---- JenkinsfileRT_dev | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/JenkinsfileRT b/JenkinsfileRT index 6b4a66f82a..c422e1891d 100644 --- a/JenkinsfileRT +++ b/JenkinsfileRT @@ -83,11 +83,8 @@ bc0.build_cmds = [ "pip install git+https://github.com/spacetelescope/stdatamodels.git@master git+https://github.com/spacetelescope/stcal.git@main", "pip install -r requirements-max.txt", "pip install -r requirements-sdp.txt", - "pip freeze", -] -bc0.build_cmds = bc0.build_cmds + PipInject(env.OVERRIDE_REQUIREMENTS) +] + PipInject(env.OVERRIDE_REQUIREMENTS) + ["pip list"] bc0.test_cmds = [ - "pip list", "pytest --cov-report=xml --cov=./ -r sxf -n auto --bigdata --slow \ --basetemp=${pytest_basetemp} --junit-xml=results.xml --dist=loadscope \ --env=${artifactoryenv} ${pytest_args}", diff --git a/JenkinsfileRT_dev b/JenkinsfileRT_dev index 885ae9e36c..da6c282bd5 100644 --- a/JenkinsfileRT_dev +++ b/JenkinsfileRT_dev @@ -80,11 +80,8 @@ bc0.build_cmds = [ "pip install -e .[test,sdp] --no-cache-dir", "pip install pytest-xdist", "pip install -r requirements-dev.txt", - "pip freeze", -] -bc0.build_cmds = bc0.build_cmds + PipInject(env.OVERRIDE_REQUIREMENTS) +] + PipInject(env.OVERRIDE_REQUIREMENTS) + ["pip list"] bc0.test_cmds = [ - "pip list", "pytest -r sxf -n auto --bigdata --slow \ --basetemp=${pytest_basetemp} --junit-xml=results.xml --dist=loadscope \ --env=${artifactoryenv} ${pytest_args}",