We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b9c400 commit e866742Copy full SHA for e866742
1 file changed
DESIGN.md
@@ -123,6 +123,13 @@ Decisions
123
124
[TAP](https://testanything.org/tap-version-14-specification.html)
125
126
+TAP uses a custom syntax.
127
+Within the Rust toolchain, json output is commonly used and the output from a test harness may be mixed with the output from rustc.
128
+While Cargo could translate TAP to json messages for these cases, we then duplicate effort.
129
+
130
+TAP uses indices for tests.
131
+**TODO** we could report indices during discovery and then use those from then on for a lighter weight way of tracking cases.
132
133
#### pytest-json-report
134
135
[pytest-json-report](https://github.com/numirias/pytest-json-report)
0 commit comments