CLI: go
How to run tests using go CLI.
On this page
Description
Go CLI is a tool shipped with GoLang installation. It contains various commands for working with your Go projects.
Go CLI is recommended method for running tests.
This section assumes you have already run 'make all' or 'make download-dependencies' command from root project directory.
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.