-
Notifications
You must be signed in to change notification settings - Fork 1
ci: Add tests in pyhf-validation-root-base Docker image #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
matthewfeickert
wants to merge
14
commits into
main
Choose a base branch
from
ci/add-Docker-based-CI-testing
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
e4e2ef1
Add tests in pyhf-validation-root-base Docker image
matthewfeickert a9896ec
Add comment explaining 'git init .'
matthewfeickert 9e5723c
Add JSON to workspace converter script
matthewfeickert 7334751
Add JSON to workspace converter test to CI
matthewfeickert dda8ac5
Remove commented out run examples
matthewfeickert efe8c61
Simplify logic on dir creation
matthewfeickert b6b8d8f
split out workspace generation and testing
matthewfeickert 59b370c
Fix ordering for replacement
matthewfeickert 5bb1375
Lint shell scripts with shellcheck
matthewfeickert 1390f99
Drop redundant install of git
matthewfeickert 546fd4a
Use root6.22.02 release tag
matthewfeickert 13cb617
Correct name
matthewfeickert 23ade2a
Update to use modern pyhf CLI tooling
matthewfeickert 2ae3c60
Correct paths
matthewfeickert File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
function JSON_to_workspace() { | ||
# 1: the analysis pallet name | ||
# 2: the url of the JSON workspaces | ||
# 3: the background only workspace | ||
# 4: the name of the signal patch | ||
# 5: the patched background + signal workspace | ||
local PALLET_NAME=$1 | ||
local HEPDATA_URL=$2 | ||
local BACKGROUND_ONLY=$3 | ||
local PATCH_NAME=$4 | ||
local JSON_WORKSPACE=$5 | ||
|
||
# Download from HEPData | ||
pyhf contrib download "${HEPDATA_URL}" "${PALLET_NAME}" | ||
|
||
# Create a full signal+background workspace | ||
workspace_dir="${BACKGROUND_ONLY%/*}" | ||
pyhf patchset extract \ | ||
--name "${PATCH_NAME}" \ | ||
--output-file "${PALLET_NAME}/${workspace_dir}/${PATCH_NAME}.json" \ | ||
"${PALLET_NAME}/${workspace_dir}/patchset.json" | ||
jsonpatch \ | ||
"${PALLET_NAME}/${BACKGROUND_ONLY}" \ | ||
"${PALLET_NAME}/${workspace_dir}/${PATCH_NAME}.json" > \ | ||
"${PALLET_NAME}/${JSON_WORKSPACE}" | ||
|
||
# Convert to ROOT + XML | ||
if [[ -d "${PALLET_NAME}/xml" ]]; then | ||
rm -rf "${PALLET_NAME}/xml" | ||
fi | ||
mkdir "${PALLET_NAME}/xml" | ||
pyhf json2xml \ | ||
--output-dir "${PALLET_NAME}/xml" \ | ||
"${PALLET_NAME}/${JSON_WORKSPACE}" | ||
|
||
# Generate ROOT workspace | ||
hist2workspace "${PALLET_NAME}/xml/FitConfig.xml" | ||
} | ||
|
||
function main() { | ||
# 1: the analysis pallet name | ||
# 2: the url of the JSON workspaces | ||
# 3: the background only workspace | ||
# 4: the name of the signal patch | ||
# 5: the patched background + signal workspace | ||
local PALLET_NAME=$1 | ||
local HEPDATA_URL=$2 | ||
local BACKGROUND_ONLY=$3 | ||
local PATCH_NAME=$4 | ||
local JSON_WORKSPACE=$5 | ||
|
||
JSON_to_workspace "${PALLET_NAME}" "${HEPDATA_URL}" "${BACKGROUND_ONLY}" "${PATCH_NAME}" "${JSON_WORKSPACE}" | ||
} | ||
|
||
main "$@" || exit 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.