mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-26 17:03:06 +00:00
Mark all tests with Parallel
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
parent
10feae2d4b
commit
f9ade5ea37
1 changed files with 5 additions and 0 deletions
|
@ -43,6 +43,7 @@ var retry = func(times int, sleepInterval time.Duration,
|
|||
|
||||
func TestSSHOneNamespaceAllToAll(t *testing.T) {
|
||||
IntegrationSkip(t)
|
||||
t.Parallel()
|
||||
|
||||
scenario, err := NewScenario()
|
||||
if err != nil {
|
||||
|
@ -115,6 +116,7 @@ func TestSSHOneNamespaceAllToAll(t *testing.T) {
|
|||
|
||||
func TestSSHMultipleNamespacesAllToAll(t *testing.T) {
|
||||
IntegrationSkip(t)
|
||||
t.Parallel()
|
||||
|
||||
scenario, err := NewScenario()
|
||||
if err != nil {
|
||||
|
@ -194,6 +196,7 @@ func TestSSHMultipleNamespacesAllToAll(t *testing.T) {
|
|||
|
||||
func TestSSHNoSSHConfigured(t *testing.T) {
|
||||
IntegrationSkip(t)
|
||||
t.Parallel()
|
||||
|
||||
scenario, err := NewScenario()
|
||||
if err != nil {
|
||||
|
@ -260,6 +263,7 @@ func TestSSHNoSSHConfigured(t *testing.T) {
|
|||
|
||||
func TestSSHIsBlockedInACL(t *testing.T) {
|
||||
IntegrationSkip(t)
|
||||
t.Parallel()
|
||||
|
||||
scenario, err := NewScenario()
|
||||
if err != nil {
|
||||
|
@ -333,6 +337,7 @@ func TestSSHIsBlockedInACL(t *testing.T) {
|
|||
|
||||
func TestSSNamespaceOnlyIsolation(t *testing.T) {
|
||||
IntegrationSkip(t)
|
||||
t.Parallel()
|
||||
|
||||
scenario, err := NewScenario()
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in a new issue