mirror of https://github.com/status-im/consul.git
Merge pull request #3785 from whit537/over-parallelization
Provide hint about test over-parallelization
This commit is contained in:
commit
2aab5001cb
|
@ -59,7 +59,9 @@ $ bin/consul
|
||||||
|
|
||||||
*Note: `make` will also place a copy of the binary in the first part of your `$GOPATH`.*
|
*Note: `make` will also place a copy of the binary in the first part of your `$GOPATH`.*
|
||||||
|
|
||||||
You can run tests by typing `make test`.
|
You can run tests by typing `make test`. The test suite may fail if
|
||||||
|
over-parallelized, so if you are seeing stochastic failures try
|
||||||
|
`GOTEST_FLAGS="-p 2 -parallel 2" make test`.
|
||||||
|
|
||||||
If you make any changes to the code, run `make format` in order to automatically
|
If you make any changes to the code, run `make format` in order to automatically
|
||||||
format the code according to Go standards.
|
format the code according to Go standards.
|
||||||
|
|
|
@ -18,7 +18,7 @@ func TestOperatorAutopilotSetConfigCommand_noTabs(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestOperatorAutopilotSetConfigCommmand(t *testing.T) {
|
func TestOperatorAutopilotSetConfigCommand(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
a := agent.NewTestAgent(t.Name(), ``)
|
a := agent.NewTestAgent(t.Name(), ``)
|
||||||
defer a.Shutdown()
|
defer a.Shutdown()
|
||||||
|
|
Loading…
Reference in New Issue