Skip to content

Instantly share code, notes, and snippets.

@apahim
Last active April 4, 2016 14:23
Show Gist options
  • Save apahim/e1b92fc5ca1367e31ada38cb9020e4e3 to your computer and use it in GitHub Desktop.
Save apahim/e1b92fc5ca1367e31ada38cb9020e4e3 to your computer and use it in GitHub Desktop.
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