Skip to content

Commit b17ca70

Browse files
committed
Skip new test on Windows
1 parent 646333b commit b17ca70

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pkg/tfgen/generate_schema_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import (
1919
"encoding/json"
2020
"fmt"
2121
"io"
22+
"runtime"
2223
"sort"
2324
"testing"
2425
"text/template"
@@ -125,6 +126,10 @@ func TestCSharpMiniRandom(t *testing.T) {
125126
// projection is going to generate named types for every instance of the shared schema. This may lead to SDK bloat. Test
126127
// the ability of the provider author to curb the bloat and force an explit sharing.
127128
func TestTypeSharing(t *testing.T) {
129+
if runtime.GOOS == "windows" {
130+
t.Skipf("Skipping on Windows due to a test setup issue")
131+
}
132+
128133
tmpdir := t.TempDir()
129134
barCharVisualSchema := func() *schema.Schema {
130135
return &schema.Schema{

0 commit comments

Comments
 (0)