Skip to content

Commit

Permalink
Remove parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuildthecloud committed May 14, 2021
1 parent 8050546 commit 4975d67
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion scripts/provisioning-tests
Expand Up @@ -25,4 +25,4 @@ done

echo Running tests
export KUBECONFIG=/etc/rancher/k3s/k3s.yaml
go test -v -parallel 2 -timeout 20m ./tests/integration/pkg/tests/...
go test -v -timeout 20m ./tests/integration/pkg/tests/...
3 changes: 0 additions & 3 deletions tests/integration/pkg/tests/custom/custom_test.go
Expand Up @@ -12,7 +12,6 @@ import (
)

func TestCustomOneNode(t *testing.T) {
t.Parallel()
clients, err := clients.New()
if err != nil {
t.Fatal(err)
Expand Down Expand Up @@ -57,7 +56,6 @@ func TestCustomOneNode(t *testing.T) {
}

func TestCustomThreeNode(t *testing.T) {
t.Parallel()
clients, err := clients.New()
if err != nil {
t.Fatal(err)
Expand Down Expand Up @@ -106,7 +104,6 @@ func TestCustomThreeNode(t *testing.T) {
}

func TestCustomUniqueRoles(t *testing.T) {
t.Parallel()
clients, err := clients.New()
if err != nil {
t.Fatal(err)
Expand Down
Expand Up @@ -13,7 +13,6 @@ import (
)

func TestSingleNodeAllRoles(t *testing.T) {
t.Parallel()
clients, err := clients.New()
if err != nil {
t.Fatal(err)
Expand Down Expand Up @@ -69,7 +68,6 @@ func TestSingleNodeAllRoles(t *testing.T) {
}

func TestThreeNodesAllRoles(t *testing.T) {
t.Parallel()
clients, err := clients.New()
if err != nil {
t.Fatal(err)
Expand Down Expand Up @@ -100,7 +98,6 @@ func TestThreeNodesAllRoles(t *testing.T) {
}

func TestFiveNodesUniqueRoles(t *testing.T) {
t.Parallel()
clients, err := clients.New()
if err != nil {
t.Fatal(err)
Expand Down Expand Up @@ -139,7 +136,6 @@ func TestFiveNodesUniqueRoles(t *testing.T) {
}

func TestFiveNodesServerAndWorkerRoles(t *testing.T) {
t.Parallel()
clients, err := clients.New()
if err != nil {
t.Fatal(err)
Expand Down

0 comments on commit 4975d67

Please sign in to comment.