Compare commits

..

1 Commits

Author SHA1 Message Date
Juan Font
3fc45ea1ee Add nolint for t.parallel 2022-11-28 20:29:32 +00:00
2 changed files with 8 additions and 4 deletions

View File

@@ -122,8 +122,9 @@ func TestPingAllByHostname(t *testing.T) {
}
}
func TestTaildrop(t *testing.T) {
func TestTaildrop(t *testing.T) { // nolint
IntegrationSkip(t)
t.Parallel() // nolint
retry := func(times int, sleepInverval time.Duration, doWork func() error) error {
var err error

View File

@@ -21,8 +21,9 @@ func IntegrationSkip(t *testing.T) {
}
}
func TestHeadscale(t *testing.T) {
func TestHeadscale(t *testing.T) { // nolint
IntegrationSkip(t)
t.Parallel()
var err error
@@ -69,8 +70,9 @@ func TestHeadscale(t *testing.T) {
}
}
func TestCreateTailscale(t *testing.T) {
func TestCreateTailscale(t *testing.T) { // nolint
IntegrationSkip(t)
t.Parallel()
namespace := "only-create-containers"
@@ -102,8 +104,9 @@ func TestCreateTailscale(t *testing.T) {
}
}
func TestTailscaleNodesJoiningHeadcale(t *testing.T) {
func TestTailscaleNodesJoiningHeadcale(t *testing.T) { // nolint
IntegrationSkip(t)
t.Parallel()
var err error