diff --git a/integration/integration_golang_test.go b/integration/integration_golang_test.go index 80ab757b3..f334d5906 100644 --- a/integration/integration_golang_test.go +++ b/integration/integration_golang_test.go @@ -20,6 +20,7 @@ import ( // In this test the piper command golangBuild performs testing, BOM file creation and building a project with entry point in the cmd/server/server.go // The configuration for golangBuild can be found in testdata/TestGolangIntegration/golang-project1/.pipeline/config.yml func TestGolangBuild_Project1(t *testing.T) { + t.Parallel() ctx := context.Background() pwd, err := os.Getwd() @@ -103,6 +104,7 @@ ls -l >files-list.txt 2>&1 // In this test, the piper golangBuild command only builds the project with the entry point at the project root. // The configuration for golangBuild can be found in testdata/TestGolangIntegration/golang-project2/.pipeline/config.yml func TestGolangBuild_Project2(t *testing.T) { + t.Parallel() ctx := context.Background() pwd, err := os.Getwd() diff --git a/integration/integration_gradle_test.go b/integration/integration_gradle_test.go index 934df0c22..460ca3145 100644 --- a/integration/integration_gradle_test.go +++ b/integration/integration_gradle_test.go @@ -18,6 +18,7 @@ import ( ) func TestGradleExecuteBuild_JavaProject_BOMCreation(t *testing.T) { + t.Parallel() ctx := context.Background() pwd, err := os.Getwd() @@ -90,6 +91,7 @@ ls -l ./build/reports/ >files-list.txt 2>&1 } func TestGradleExecuteBuild_JavaProjectWithBomPlugin(t *testing.T) { + t.Parallel() ctx := context.Background() pwd, err := os.Getwd() diff --git a/integration/integration_maven_test.go b/integration/integration_maven_test.go index 67e79c471..3b4d359b1 100644 --- a/integration/integration_maven_test.go +++ b/integration/integration_maven_test.go @@ -10,6 +10,7 @@ import ( ) func TestMavenBuildCloudSdkSpringProject(t *testing.T) { + t.Parallel() container := givenThisContainer(t, IntegrationTestDockerExecRunnerBundle{ Image: "maven:3-openjdk-8-slim", User: "1000", @@ -39,6 +40,7 @@ func TestMavenBuildCloudSdkSpringProject(t *testing.T) { } func TestMavenBuildCloudSdkTomeeProject(t *testing.T) { + t.Parallel() container := givenThisContainer(t, IntegrationTestDockerExecRunnerBundle{ Image: "maven:3-openjdk-8-slim", User: "1000",