mirror of
https://github.com/coder/coder.git
synced 2025-07-13 21:36:50 +00:00
fix(healthcheck): remove t.Parallel()
from healthcheck tests (#7174)
This commit is contained in:
@ -21,8 +21,11 @@ import (
|
||||
"github.com/coder/coder/tailnet"
|
||||
)
|
||||
|
||||
//nolint:tparallel
|
||||
func TestDERP(t *testing.T) {
|
||||
t.Parallel()
|
||||
if testing.Short() {
|
||||
t.Skip("skipping healthcheck test in short mode, they reach out over the network.")
|
||||
}
|
||||
|
||||
t.Run("OK", func(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
Reference in New Issue
Block a user