Skip to content

Commit

Permalink
Clarify error status (#462)
Browse files Browse the repository at this point in the history
* Clarify `error` status

* Update building/tooling/test-runners/interface.md

Co-authored-by: Jeremy Walker <jez.walker@gmail.com>

* Update building/tooling/test-runners/interface.md

Co-authored-by: Jeremy Walker <jez.walker@gmail.com>

* Update building/tooling/test-runners/interface.md

Co-authored-by: Jeremy Walker <jez.walker@gmail.com>

* Update building/tooling/test-runners/interface.md

---------

Co-authored-by: Jeremy Walker <jez.walker@gmail.com>
  • Loading branch information
ErikSchierboom and iHiD authored Sep 21, 2023
1 parent 1628f0b commit 397366d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion building/tooling/test-runners/interface.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ The following overall statuses are valid:

- `pass`: All tests passed
- `fail`: At least one test has the status `fail` or `error`
- `error`: No test was executed correctly (this usually means e.g. a compile error, or a syntax error)
- `error`: No test was executed (this usually means a compile error or a syntax error)

The `error` status should _only_ be used if **none of the tests were run**.
For compiled languages this is generally a result of the code not being able to compile.
For interpreted languages, this is generally the result of a syntax error that stops the file from parsing.

#### Message

Expand Down

0 comments on commit 397366d

Please sign in to comment.