Last active
April 4, 2016 14:23
-
-
Save apahim/e1b92fc5ca1367e31ada38cb9020e4e3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
AVOCADO_ALL_OK = 0 | |
AVOCADO_TESTS_FAIL = 1 | |
AVOCADO_JOB_FAIL = 2 | |
AVOCADO_FAIL = 3 | |
AVOCADO_JOB_INTERRUPTED = 4 | |
test_state(runner) | summary (runner -> job) | |
--------------------|----------------------------------- | |
SKIP | if fail_class is TimeOutSkipTest: | |
| INTERRUPTED | |
| else: | |
| None | |
--------------------|----------------------------------- | |
ABORT | | |
ERROR | | |
FAIL | FAIL | |
WARN | | |
PASS | | |
START | | |
ALERT | | |
RUNNING | | |
NOSTATUS | | |
INTERRUPTED | INTERRUPTED | |
summary (runner -> job) | exit_code (job) | |
-------------------------|----------------------------------- | |
INTERRUPTED | AVOCADO_JOB_INTERRUPTED | |
FAIL | AVOCADO_TESTS_FAIL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment