-
Notifications
You must be signed in to change notification settings - Fork 3
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
[ORCA-175] Adds SuiteStatus #38
Conversation
✅ Linked to Story ORCA-175 · As an output, return the input manifest but with dcqc_status column for ease of use |
Codecov Report
@@ Coverage Diff @@
## main #38 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 21 22 +1
Lines 1044 1090 +46
Branches 170 178 +8
=========================================
+ Hits 1044 1090 +46
|
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.
🔥 great work! Just a minor nit - I haven't had the time to install and run a test command but I trust that it works.
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.
A perfect PR. Small, self-contained, and focused on one change. 🚀
This PR is the first half of the
py-dcqc
changes needed to accomplish ORCA-175 (second half added in #39). It adds the enumSuiteStatus
, and makes changes toSuiteABC
to apply this status based on the results of all of the component tests in a suite. It also updates The tests and example files needed to run those tests for the new changes. The newSuiteStatus
statuses include:NONE
- status has yet to be evaluatedGREEN
- All tests required or otherwise either passed or were skippedRED
- At least one required test failedAMBER
- All required tests either passed or were skipped AND at least one non-required test failedThe application of this status has been tested in
nf-dcqc
and behaves as expected.