Skip to content

Commit

Permalink
Add a pip list step after the overrides are injected (#711)
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamJamieson authored Jun 16, 2023
1 parent 678fa43 commit 0820ff4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion JenkinsfileRT
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,12 @@ bc0.pip_reqs_files = ['requirements-sdp.txt']
bc0.build_cmds = [
"pip install -e .[test,ephem]",
"pip install pytest-xdist pytest-sugar ddtrace",
"pip freeze",
'echo "CRDS_CONTEXT = $(crds list --contexts $CRDS_CONTEXT --mappings | grep pmap)"',
]
bc0.build_cmds = bc0.build_cmds + PipInject(env.OVERRIDE_REQUIREMENTS)
bc0.build_cmds = bc0.build_cmds + [
"pip list"
]
bc0.test_cmds = [
"pytest --cov-report=xml:coverage.xml --cov=./ -r sxf -n auto --bigdata --slow \
--ddtrace \
Expand Down
4 changes: 3 additions & 1 deletion JenkinsfileRT_dev
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,12 @@ bc0.pip_reqs_files = ['requirements-dev.txt']
bc0.build_cmds = [
"pip install -e .[test,ephem]",
"pip install pytest-xdist pytest-sugar",
"pip freeze",
'echo "CRDS_CONTEXT = $(crds list --contexts $CRDS_CONTEXT --mappings | grep pmap)"',
]
bc0.build_cmds = bc0.build_cmds + PipInject(env.OVERRIDE_REQUIREMENTS)
bc0.build_cmds = bc0.build_cmds + [
"pip list"
]
bc0.test_cmds = [
"pytest -r sxf -n auto --bigdata --slow \
--basetemp=${pytest_basetemp} --junit-xml=results.xml --dist=loadscope \
Expand Down

0 comments on commit 0820ff4

Please sign in to comment.