gotestiful

command module
v1.1.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 9, 2023 License: MIT Imports: 5 Imported by: 0

README

gotestiful

gotest + beatiful

gotestiful is a go terminal program that wraps 'go test' to streamline tests running and config and also improves the coverage presentation output.

Quick start

  1. run go install github.com/alex-parra/gotestiful@latest
  2. run gotestiful from the root of any go project (where go.mod is)

Comparison of go test and gotestiful on kubernetes/client-go

kubernetes-client-go

Examples

  • gotestiful runs tests for the current folder eg. go test ./...
  • gotestiful -help shows examples and flags infos
  • gotesttiful some/pkg runs only that package eg. go test some/pkg
  • gotestiful -cache=false runs tests without cache eg. go test -count=1 ...
  • gotestiful init creates a base configuration in the current folder
    (the config file is optional. you may opt to use flags only)
  • ... see gotestiful -help for all flags

Features:

  • config file per project
    run gotestiful init from your project root to create a .gotestiful config file and then adjust the settings.
    afterwards you only need to run gotestiful and the config is read

  • exclusion list
    add packages (or just prefixes) to the config exclude array to not test those packages.
    example: exclude generated code such as protobuf packages

  • global coverage summary
    shows the overall code coverage calculated from the coverage score of each tested package.

  • open html coverage detail report
    set the -report flag and the coverage html detail will open (eg. go tool cover -html)

Contributors

Made with contributors-img.

Documentation

Overview

`gotestiful` wraps 'go test' to streamline running tests while also giving you a pleasant output presentation.

Install

go install github.com/alex-parra/gotestiful@latest

Examples

`gotestiful init`
- creates a base configuration in the current folder (the config file is optional. you may opt to use flags only)

`gotestiful help`
- shows examples and flags infos

`gotestiful`
- runs tests for the current folder eg. `go test ./...`

`gotesttiful some/pkg`
- runs only that package eg. `go test some/pkg`

`gotestiful -cache=false`
- runs tests without cache eg. `go test -count=1 ...`

... see `gotestiful help` for all flags

Features:

config file per project [optional]
- run `gotestiful init` from your project root to create a `.gotestiful` config file and then adjust the settings. afterwards you only need to run `gotestiful` and the config is read

exclusion list
- add packages (or just prefixes) to the config `exclude` array to not test those packages eg. exclude generated code such as protobuf packages

global coverage summary
- shows the overall code coverage calculated from the coverage score of each tested package.

open html coverage detail report
- set the `-report` flag and the coverage html detail will open (eg. `go tool cover -html`)

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL