Records an annotation about the test run.
(name, value)
| 74 | |
| 75 | |
| 76 | def annotation(name, value): |
| 77 | """Records an annotation about the test run.""" |
| 78 | annotations.append((name, value)) |
| 79 | if not defer_annotations: |
| 80 | flush_annotations() |
| 81 | |
| 82 | |
| 83 | def get_toolset(): |
no test coverage detected