https://github.com/grisu48/openqa-serial
Improved openQA serial reader
https://github.com/grisu48/openqa-serial
go openqa
Last synced: about 1 year ago
JSON representation
Improved openQA serial reader
- Host: GitHub
- URL: https://github.com/grisu48/openqa-serial
- Owner: grisu48
- Created: 2022-12-29T10:57:42.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-29T10:58:04.000Z (over 3 years ago)
- Last Synced: 2025-02-15T13:17:32.265Z (over 1 year ago)
- Topics: go, openqa
- Language: Go
- Homepage:
- Size: 104 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# openqa-serial
Improved openQA serial reader.
This is a small CLI tool to improve the readability of the `serial_terminal.txt` file when debugging openQA jobs. It tries to parse the serial output of a given openQA job and formats for better readability. When possible it removes openQA tokens to reduce the amount of unnecessary and distractive output.

## Usage
Synopsis
openqa-serial [OPTIONS] INPUT
OPTIONS
-n, --no-numbers Don't display command numbers
The tool accepts openQA job URLs or filenames as `INPUT`. You don't have to point to the `serial_terminal.txt` file directly, the tool auto-completes this itself, unless another file is specifically given.
Example
openqa-serial https://duck-norris.qe.suse.de/tests/11617
## Build
This is a plain `go` application without external dependencies. Simply do a `make` or `go build ./...` to compile the binary.
make # build binary
For your own convenience, place the resulting `openqa-serial` binary in your `~/bin/` folder to have access to it from everywhere.