Skip to content

Commit

Permalink
run pip list after installing override requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyburnett committed Jun 5, 2023
1 parent 21c7b51 commit da3288a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions JenkinsfileRT
Original file line number Diff line number Diff line change
Expand Up @@ -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}",
Expand Down
5 changes: 1 addition & 4 deletions JenkinsfileRT_dev
Original file line number Diff line number Diff line change
Expand Up @@ -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}",
Expand Down

0 comments on commit da3288a

Please sign in to comment.