Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -330,8 +330,14 @@ The rules report tab displays the run status of each rule selected for validatio

The possible rule run statuses are:

- `SUCCESS` - The rule ran and data was validated against the rule. May or may not produce results
- `SKIPPED` - The rule was unable to be run. Usually due to missing required data, but could also be cause by rule execution errors.
- `SUCCESS` - The rule ran, data was validated, and no issues were reported.
- `SKIPPED` - The rule was unable to be run for one of the following reasons:
- Column not found in data
- Domain not found
- Schema validation is off
- Outside scope
- `ISSUE REPORTED` - The rule ran, data was validated, and issues were reported
- `EXECUTION ERROR` - The validation failed for an unknown reason caused by rule evaluation or execution. Error details are found in the `Issue Details` tab.

#### Setting DATASET_SIZE_THRESHOLD for Large Datasets

Expand Down
6 changes: 3 additions & 3 deletions cdisc_rules_engine/enums/execution_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
class ExecutionStatus(BaseEnum):
SUCCESS = "success"
SKIPPED = "skipped"
EXECUTION_ERROR = "execution_error"
ISSUE_REPORTED = "issue_reported"
UNKNOWN_STATUS = "unknown_status"
EXECUTION_ERROR = "execution error"
ISSUE_REPORTED = "issue reported"
UNKNOWN_STATUS = "unknown status"


class SkippedReason(BaseEnum):
Expand Down
Binary file modified resources/templates/report-template.xlsx
Binary file not shown.
Binary file modified resources/templates/usdm-report-template.xlsx
Binary file not shown.
Loading