Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
workspaces
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ssa
workspaces
Commits
14a1073a
Commit
14a1073a
authored
10 months ago
by
Sam Kagan
Browse files
Options
Downloads
Patches
Plain Diff
Passed tests assuming PPR comes in thru restore args
parent
82e3be02
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!1706
merge 2.8.4 to main
,
!1657
Got EVLA CMS restores working via casa_envoy, using casa_restorepipescript.py when it exists
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
apps/cli/executables/pexable/casa_envoy/casa_envoy/palaver.py
+25
-10
25 additions, 10 deletions
.../cli/executables/pexable/casa_envoy/casa_envoy/palaver.py
apps/cli/executables/pexable/casa_envoy/test/test_casa_envoy.py
+1
-3
1 addition, 3 deletions
...li/executables/pexable/casa_envoy/test/test_casa_envoy.py
with
26 additions
and
13 deletions
apps/cli/executables/pexable/casa_envoy/casa_envoy/palaver.py
+
25
−
10
View file @
14a1073a
...
...
@@ -56,7 +56,8 @@ def _get_settings(cwd: pathlib.Path, args: list) -> dict:
processing_dir
=
str
(
cwd
.
name
)
metadata
=
args
[
0
]
ppr
=
args
[
1
]
# Restores don't always come with a PPR from the arguments, sometimes they want to use the PPR in the cal.
ppr
=
args
[
1
]
if
len
(
args
)
>
1
else
None
return
{
"
useCasa
"
:
use_casa
,
...
...
@@ -78,25 +79,38 @@ def _setup_launcher(path: pathlib.Path, args: argparse.Namespace) -> LauncherIF:
:param args: arguments specifying type of processing requested
:return: Launcher
"""
if
not
(
(
args
.
standard_cal
is
not
None
)
^
(
args
.
vlass_cal
is
not
None
)
^
(
args
.
standard_img
is
not
None
)
^
(
args
.
vlass_img
is
not
None
)
^
(
args
.
restore
is
not
None
)
^
(
args
.
split
is
not
None
)
):
raise
ValueError
(
"
Expected exactly one of standard_cal, vlass_cal, standard_img, vlass_img, or restore arguments to be provided, found none or multiple
"
)
parameters
=
{}
if
args
.
parallel
is
not
None
:
parameters
[
"
requested_parallel
"
]
=
args
.
parallel
if
args
.
standard_cal
is
not
None
or
args
.
vlass_cal
is
not
None
:
if
args
.
standard_cal
is
not
None
or
args
.
vlass_cal
is
not
None
or
args
.
restore
is
not
None
:
if
args
.
standard_cal
:
parameters
=
{
**
parameters
,
**
_get_settings
(
path
,
args
.
standard_cal
)}
if
args
.
restore
:
parameters
[
"
product_type
"
]
=
ProductType
.
RESTORE
.
value
else
:
parameters
[
"
product_type
"
]
=
ProductType
.
STD_CAL
.
value
if
args
.
vlass_cal
:
parameters
[
"
product_type
"
]
=
ProductType
.
STD_CAL
.
value
elif
args
.
vlass_cal
:
parameters
=
{
**
parameters
,
**
_get_settings
(
path
,
args
.
vlass_cal
),
"
product_type
"
:
ProductType
.
VLASS_CAL
.
value
,
}
elif
args
.
restore
:
parameters
=
{
**
parameters
,
**
_get_settings
(
path
,
args
.
restore
),
"
product_type
"
:
ProductType
.
RESTORE
.
value
,
}
return
CalibrationLauncher
(
parameters
)
elif
args
.
standard_img
is
not
None
or
args
.
vlass_img
is
not
None
:
...
...
@@ -175,9 +189,10 @@ def arg_parser() -> argparse.ArgumentParser:
)
parser
.
add_argument
(
"
--restore
"
,
nargs
=
"
+
"
,
required
=
False
,
action
=
"
store
_true
"
,
help
=
"
run the restore measurement set CASA pipeline
, use in conjunction with
'
-c
'
"
,
action
=
"
store
"
,
help
=
"
run the restore measurement set CASA pipeline
"
,
)
parser
.
add_argument
(
"
--integrated
"
,
...
...
This diff is collapsed.
Click to expand it.
apps/cli/executables/pexable/casa_envoy/test/test_casa_envoy.py
+
1
−
3
View file @
14a1073a
...
...
@@ -182,9 +182,7 @@ class TestPalaver:
:param mock_json:
:return:
"""
args
.
restore
=
[
"
test/input_files/restore.json
"
,
]
args
.
restore
=
[
"
test/input_files/restore.json
"
,
"
test/input_files/PPR.xml
"
]
with
patch
(
"
argparse.ArgumentParser.parse_args
"
,
MagicMock
(
return_value
=
args
))
as
mock_args
:
with
patch
(
"
casa_envoy.launchers.CalibrationLauncher.launch_casa
"
)
as
cal_launcher
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment