Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gwcelery
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
emfollow
gwcelery
Commits
25419d27
Commit
25419d27
authored
2 years ago
by
Cody Messick
Browse files
Options
Downloads
Patches
Plain Diff
Add PE_READY label after bilby runs instead of lalinference runs
parent
29387a26
No related branches found
No related tags found
1 merge request
!870
Add PE_READY label after bilby runs
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gwcelery/tasks/inference.py
+1
-1
1 addition, 1 deletion
gwcelery/tasks/inference.py
gwcelery/tests/test_tasks_inference.py
+1
-1
1 addition, 1 deletion
gwcelery/tests/test_tasks_inference.py
with
2 additions
and
2 deletions
gwcelery/tasks/inference.py
+
1
−
1
View file @
25419d27
...
...
@@ -617,7 +617,7 @@ def dag_finished(rundir, preferred_event_id, superevent_id, pe_pipeline):
clean_up
.
si
(
rundir
)
).
delay
()
if
pe_pipeline
==
'
lalinference
'
:
if
pe_pipeline
==
'
bilby
'
:
gracedb
.
create_label
.
delay
(
'
PE_READY
'
,
superevent_id
)
...
...
This diff is collapsed.
Click to expand it.
gwcelery/tests/test_tasks_inference.py
+
1
−
1
View file @
25419d27
...
...
@@ -378,7 +378,7 @@ def test_dag_finished(monkeypatch, tmp_path, pipeline):
inference
.
dag_finished
(
rundir
,
gid
,
'
S1234
'
,
pipeline
)
assert
upload
.
call_count
==
len
(
paths
)
_upload_url
.
assert_called_once
()
if
pipeline
==
'
lalinference
'
:
if
pipeline
==
'
bilby
'
:
create_label
.
assert_called_once
()
else
:
create_label
.
assert_not_called
()
...
...
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