Skip to content
Snippets Groups Projects
Commit 8edc4284 authored by Christoph Alt's avatar Christoph Alt
Browse files

changed filter

parent 2acd9373
No related merge requests found
Pipeline #42913 passed with stages
in 36 seconds
...@@ -43,5 +43,5 @@ def create_job_datapoint(job: dict) -> DataPoint: ...@@ -43,5 +43,5 @@ def create_job_datapoint(job: dict) -> DataPoint:
def get_job_datapoints(url): def get_job_datapoints(url):
for job in get_job_info(url): for job in get_job_info(url):
if job['status'] == 'passed': if job['status'] == 'success':
yield create_job_datapoint(job) yield create_job_datapoint(job)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment