Skip to content

Commit

Permalink
skipping run task integration tests temporarily (#691)
Browse files Browse the repository at this point in the history
skipping run task integration tests temporarily
  • Loading branch information
laurenolivia committed Apr 26, 2023
1 parent 13f05f3 commit a7c8535
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
5 changes: 5 additions & 0 deletions run_task_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
)

func TestRunTasksCreate(t *testing.T) {
t.Skip("skipping run task integration tests until service migration is complete.")
client := testClient(t)
ctx := context.Background()

Expand Down Expand Up @@ -50,6 +51,7 @@ func TestRunTasksCreate(t *testing.T) {
}

func TestRunTasksList(t *testing.T) {
t.Skip("skipping run task integration tests until service migration is complete.")
client := testClient(t)
ctx := context.Background()

Expand All @@ -74,6 +76,7 @@ func TestRunTasksList(t *testing.T) {
}

func TestRunTasksRead(t *testing.T) {
t.Skip("skipping run task integration tests until service migration is complete.")
client := testClient(t)
ctx := context.Background()

Expand Down Expand Up @@ -123,6 +126,7 @@ func TestRunTasksRead(t *testing.T) {
}

func TestRunTasksUpdate(t *testing.T) {
t.Skip("skipping run task integration tests until service migration is complete.")
client := testClient(t)
ctx := context.Background()

Expand Down Expand Up @@ -173,6 +177,7 @@ func TestRunTasksUpdate(t *testing.T) {
}

func TestRunTasksDelete(t *testing.T) {
t.Skip("skipping run task integration tests until service migration is complete.")
client := testClient(t)
ctx := context.Background()

Expand Down
2 changes: 2 additions & 0 deletions task_stages_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import (
)

func TestTaskStagesRead(t *testing.T) {
t.Skip("skipping run task integration tests until service migration is complete.")
client := testClient(t)
ctx := context.Background()

Expand Down Expand Up @@ -76,6 +77,7 @@ func TestTaskStagesRead(t *testing.T) {
}

func TestTaskStagesList(t *testing.T) {
t.Skip("skipping run task integration tests until service migration is complete.")
client := testClient(t)
ctx := context.Background()

Expand Down
7 changes: 7 additions & 0 deletions workspace_run_task_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import (
)

func TestWorkspaceRunTasksCreate(t *testing.T) {
t.Skip("skipping run task integration tests until service migration is complete.")
client := testClient(t)
ctx := context.Background()

Expand Down Expand Up @@ -46,6 +47,7 @@ func TestWorkspaceRunTasksCreate(t *testing.T) {
}

func TestWorkspaceRunTasksCreateBeta(t *testing.T) {
t.Skip("skipping run task integration tests until service migration is complete.")
// Once Pre-Plan Tasks are generally available, this can replace the above TestWorkspaceRunTasksCreate
skipUnlessBeta(t)
client := testClient(t)
Expand Down Expand Up @@ -86,6 +88,7 @@ func TestWorkspaceRunTasksCreateBeta(t *testing.T) {
}

func TestWorkspaceRunTasksList(t *testing.T) {
t.Skip("skipping run task integration tests until service migration is complete.")
client := testClient(t)
ctx := context.Background()

Expand Down Expand Up @@ -118,6 +121,7 @@ func TestWorkspaceRunTasksList(t *testing.T) {
}

func TestWorkspaceRunTasksRead(t *testing.T) {
t.Skip("skipping run task integration tests until service migration is complete.")
client := testClient(t)
ctx := context.Background()

Expand Down Expand Up @@ -151,6 +155,7 @@ func TestWorkspaceRunTasksRead(t *testing.T) {
}

func TestWorkspaceRunTasksUpdate(t *testing.T) {
t.Skip("skipping run task integration tests until service migration is complete.")
client := testClient(t)
ctx := context.Background()

Expand Down Expand Up @@ -180,6 +185,7 @@ func TestWorkspaceRunTasksUpdate(t *testing.T) {
}

func TestWorkspaceRunTasksUpdateBeta(t *testing.T) {
t.Skip("skipping run task integration tests until service migration is complete.")
// Once Pre-Plan Tasks are generally available, this can replace the above TestWorkspaceRunTasksUpdate
skipUnlessBeta(t)
client := testClient(t)
Expand Down Expand Up @@ -214,6 +220,7 @@ func TestWorkspaceRunTasksUpdateBeta(t *testing.T) {
}

func TestWorkspaceRunTasksDelete(t *testing.T) {
t.Skip("skipping run task integration tests until service migration is complete.")
client := testClient(t)
ctx := context.Background()

Expand Down

0 comments on commit a7c8535

Please sign in to comment.