-
Notifications
You must be signed in to change notification settings - Fork 1
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
fc431c3
commit b6efa17
Showing
4 changed files
with
55 additions
and
0 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,3 @@ | ||
Python-air was not released yet. Please wait for the Zenodo link to appear shortly. | ||
|
||
http://www.github.com/cwi-swat/python-air |
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 @@ | ||
* Centrum Wiskunde & Informatica, SWAT group (2021-...) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
module lang::xml::\junit-report::TestSuites | ||
|
||
import DateTime; | ||
|
||
data TestSuites | ||
= testsuites( | ||
Properties properties, | ||
list[TestSuite] suites, | ||
int disabled=0, | ||
int errors=0, | ||
int failures=0, | ||
str name="test suite", | ||
int tests=0, | ||
int time=0 | ||
); | ||
|
||
data Properties | ||
= properties(list[Property] properties); | ||
|
||
data Property | ||
= property(str name="", str \value=""); | ||
|
||
data TestSuite | ||
= testsuite( | ||
list[TestCase] cases, | ||
str name="test suite", | ||
int tests=0, | ||
int disabled=0, | ||
int errors=0, | ||
int failures=0, | ||
str hostname="localhost", | ||
int id=0, | ||
str package="", | ||
int skipped=0, | ||
int time=0, | ||
datetime timestamp=now() | ||
); | ||
|
||
data TestCase | ||
= testcase(TestResult result, str name="", int assertions=0, str classname="", int time=0); | ||
|
||
data TestResult | ||
= skipped(str message) | ||
| error(str text, str message="", str \type="") | ||
| failure(str text, str message="", str \type="") | ||
| \system-out(str text) | ||
| \system-err(str text) | ||
; | ||
|