Skip to content

Commit

Permalink
Temporarily SKIP all the acc tests
Browse files Browse the repository at this point in the history
  • Loading branch information
t0yv0 committed Jan 13, 2025
1 parent 7a755f6 commit faf7992
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/examples_dotnet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ func TestAccEcsDotnet(t *testing.T) {
}

func getDotnetBaseOptions(t *testing.T) integration.ProgramTestOptions {
t.Skip() // TODO remove

if os.Getenv("PULUMI_LOCAL_NUGET") == "" {
localNugetDir, err := filepath.Abs("../nuget")
if err != nil {
Expand Down
1 change: 1 addition & 0 deletions examples/examples_go_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ func TestAccTrail(t *testing.T) {
}

func getGoBaseOptions(t *testing.T) integration.ProgramTestOptions {
t.Skip() // TODO remove
region := getEnvRegion(t)
base := getBaseOptions(t)
goBase := base.With(integration.ProgramTestOptions{
Expand Down
8 changes: 8 additions & 0 deletions examples/examples_nodejs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ func TestAccEcsCapacityProviderService(t *testing.T) {
}

func TestRegress1112(t *testing.T) {
t.Skip() // TODO remove

t.Setenv("AWS_REGION", "")
os.Unsetenv("AWS_REGION")
test := integration.ProgramTestOptions{
Expand Down Expand Up @@ -351,6 +353,8 @@ func TestVpc(t *testing.T) {
}

func TestAccEcsParallel(t *testing.T) {
t.Skip() // TODO remove

maxDuration(15*time.Minute, t, func(t *testing.T) {
test := getNodeJSBaseOptions(t).
With(integration.ProgramTestOptions{
Expand All @@ -369,6 +373,8 @@ func TestAccEcsParallel(t *testing.T) {
}

func TestDockerUpgrade(t *testing.T) {
t.Skip() // TODO remove

providerName := "awsx"
baselineVersion := "2.19.0"
t.Parallel()
Expand Down Expand Up @@ -454,6 +460,8 @@ func TestDockerUpgrade(t *testing.T) {
}

func getNodeJSBaseOptions(t *testing.T) integration.ProgramTestOptions {
t.Skip() // TODO remove

base := getBaseOptions(t)
nodeBase := base.With(integration.ProgramTestOptions{
Dependencies: []string{
Expand Down
2 changes: 2 additions & 0 deletions examples/examples_python_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ func TestAccEcsPython(t *testing.T) {
}

func getPythonBaseOptions(t *testing.T) integration.ProgramTestOptions {
t.Skip() // TODO remove

region := getEnvRegion(t)
base := getBaseOptions(t)
pyBase := base.With(integration.ProgramTestOptions{
Expand Down

0 comments on commit faf7992

Please sign in to comment.