-
Notifications
You must be signed in to change notification settings - Fork 346
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
68e89ef
commit 58d24d1
Showing
7 changed files
with
99 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
from enum import Enum | ||
|
||
# Evaluation Log Constants | ||
APPLY_PATCH_FAIL = ">>>>> Patch Apply Failed" | ||
APPLY_PATCH_PASS = ">>>>> Applied Patch" | ||
INSTALL_FAIL = ">>>>> Init Failed" | ||
INSTALL_PASS = ">>>>> Init Succeeded" | ||
RESET_FAILED = ">>>>> Reset Failed" | ||
TESTS_ERROR = ">>>>> Tests Errored" | ||
TESTS_TIMEOUT = ">>>>> Tests Timed Out" | ||
|
||
# Result Categories | ||
FAIL_TO_PASS = "FAIL_TO_PASS" | ||
FAIL_TO_FAIL = "FAIL_TO_FAIL" | ||
PASS_TO_PASS = "PASS_TO_PASS" | ||
PASS_TO_FAIL = "PASS_TO_FAIL" | ||
|
||
# Test Status Enum | ||
class TestStatus(Enum): | ||
FAILED = "FAILED" | ||
PASSED = "PASSED" | ||
SKIPPED = "SKIPPED" | ||
ERROR = "ERROR" | ||
|
||
# Resolved Status Enum | ||
class ResolvedStatus(Enum): | ||
NO = "RESOLVED_NO" | ||
PARTIAL = "RESOLVED_PARTIAL" | ||
FULL = "RESOLVED_FULL" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters