Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/honza/openshift-test-result-filter
https://github.com/honza/openshift-test-result-filter
Last synced: about 6 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/honza/openshift-test-result-filter
- Owner: honza
- License: gpl-3.0
- Created: 2021-03-12T14:37:37.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-03-12T16:48:47.000Z (over 3 years ago)
- Last Synced: 2024-04-16T01:44:55.868Z (7 months ago)
- Language: Go
- Size: 15.6 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# openshift-test-result-filter
This tool accepts a JUNIT file as input, and allows you to filter the results.
* Filter by test result (`all`, `failed`, `passed`, `skipped`)
* Filter by tag (e.g. `sig-storage`)
* Optionally show errors for failed tests
* Show GitHub links to test definitions in openshift/origin## Building
Requires Go >= 1.16
```
$ git clone https://github.com/honza/openshift-test-result-filter
$ cd openshift-test-result-filter
$ make
$ ./openshift-test-result-filter
```## Running
```
Usage of ./openshift-test-result-filter:
-filename string
input junit file
-origin-tree-path string
-result string
choices: all, skipped, failed, passed (default "all")
-show-errors
-tag string
Tag, e.g. sig-storage
```