Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,32 @@ Like `go test` but with colors.

Use the pre-built binary for Linux 64-bit:

```
$ curl https://gotest-release.s3.amazonaws.com/gotest_linux > gotest && chmod +x gotest
```bash
curl https://gotest-release.s3.amazonaws.com/gotest_linux > gotest && chmod +x gotest
```

Alternatively:

```
$ go get -u github.com/rakyll/gotest
```bash
go get -u github.com/rakyll/gotest
```

# Usage
## Usage

Accepts all the arguments and flags `go test` works with.

Example:

```bash
gotest -v github.com/jonasbn/go-test-demo
```
$ gotest -v github.com/jonasbn/go-test-demo
```

![gotest output example screenshot](https://raw.githubusercontent.com/jonasbn/go-test-demo/1.0.0/gotest-go-test-demo.png)

gotest comes with many colors! Configure the color of the output by setting the following env variable:

```
$ GOTEST_PALETTE="magenta,white"
```bash
GOTEST_PALETTE="magenta,white"
```

The output will have magenta for failed cases, white for success.
Expand Down