-
Couldn't load subscription status.
- Fork 79
adding get_validator_jobs #2620
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
Changes from 3 commits
abd45cf
30b7498
04dfa46
e2a236c
0240ef1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -492,7 +492,7 @@ def test_complete_success(self): | |
| job.complete(True, artifacts_data=artifacts_data) | ||
| self._wait_for_job(job) | ||
| # Retrieve the job that is performing the validation: | ||
| val_job = qdb.processing_job.ProcessingJob(job.step.rsplit(" ", 1)[-1]) | ||
| val_job = list(job.get_validator_jobs)[-1] | ||
|
||
| # Test the output artifact is going to be named based on the | ||
| # input parameters | ||
| self.assertEqual( | ||
|
|
@@ -544,7 +544,7 @@ def test_complete_success(self): | |
| self._wait_for_job(job) | ||
|
|
||
| # Retrieve the job that is performing the validation: | ||
| val_job = qdb.processing_job.ProcessingJob(job.step.rsplit(" ", 1)[-1]) | ||
| val_job = list(job.get_validator_jobs)[-1] | ||
| # Test the output artifact is going to be named based on the | ||
| # input parameters | ||
| self.assertEqual( | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pythonic thing would be to name this property
validator_jobs.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
K, will change.