CLI: go

How to run tests using go CLI.

Description

Go CLI is a tool shipped with GoLang installation. It contains various commands for working with your Go projects.

Usages

To run all tests:

go test

To run all tests in random order marked with tag wip asynchronously using 2 CPUs:

go test -v --godog.random --godog.tags=wip --godog.concurrency=2

For more info see godog’s README TestMain section.