Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Updated test repo, check if Windows tests pass #10821

Merged
merged 2 commits into from
Sep 22, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 0 additions & 18 deletions sdk/go/auto/local_workspace_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import (
"os/exec"
"path/filepath"
"regexp"
"runtime"
"strings"
"sync"
"testing"
Expand Down Expand Up @@ -53,7 +52,6 @@ var pulumiOrg = getTestOrg()
const pName = "testproj"
const agent = "pulumi/pulumi/test"
const pulumiTestOrg = "pulumi-test"
const windows = "windows"

func TestWorkspaceSecretsProvider(t *testing.T) {
t.Parallel()
Expand Down Expand Up @@ -441,10 +439,6 @@ func randomStackName() string {
func TestNewStackRemoteSource(t *testing.T) {
t.Parallel()

if runtime.GOOS == windows {
t.Skip("TODO[pulumi/pulumi#8646] update github.com/pulumi/test-repo to fix Go compilation on Windows")
}

ctx := context.Background()
pName := "go_remote_proj"
sName := randomStackName()
Expand Down Expand Up @@ -540,10 +534,6 @@ func TestNewStackRemoteSource(t *testing.T) {
func TestUpsertStackRemoteSource(t *testing.T) {
t.Parallel()

if runtime.GOOS == windows {
t.Skip("TODO[pulumi/pulumi#8646] update github.com/pulumi/test-repo to fix Go compilation on Windows")
}

ctx := context.Background()
pName := "go_remote_proj"
sName := randomStackName()
Expand Down Expand Up @@ -639,10 +629,6 @@ func TestUpsertStackRemoteSource(t *testing.T) {
func TestNewStackRemoteSourceWithSetup(t *testing.T) {
t.Parallel()

if runtime.GOOS == windows {
t.Skip("TODO[pulumi/pulumi#8646] update github.com/pulumi/test-repo to fix Go compilation on Windows")
}

ctx := context.Background()
pName := "go_remote_proj"
sName := randomStackName()
Expand Down Expand Up @@ -750,10 +736,6 @@ func TestNewStackRemoteSourceWithSetup(t *testing.T) {
func TestUpsertStackRemoteSourceWithSetup(t *testing.T) {
t.Parallel()

if runtime.GOOS == windows {
t.Skip("TODO[pulumi/pulumi#8646] update github.com/pulumi/test-repo to fix Go compilation on Windows")
}

ctx := context.Background()
pName := "go_remote_proj"
sName := randomStackName()
Expand Down