We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 646333b commit b17ca70Copy full SHA for b17ca70
pkg/tfgen/generate_schema_test.go
@@ -19,6 +19,7 @@ import (
19
"encoding/json"
20
"fmt"
21
"io"
22
+ "runtime"
23
"sort"
24
"testing"
25
"text/template"
@@ -125,6 +126,10 @@ func TestCSharpMiniRandom(t *testing.T) {
125
126
// projection is going to generate named types for every instance of the shared schema. This may lead to SDK bloat. Test
127
// the ability of the provider author to curb the bloat and force an explit sharing.
128
func TestTypeSharing(t *testing.T) {
129
+ if runtime.GOOS == "windows" {
130
+ t.Skipf("Skipping on Windows due to a test setup issue")
131
+ }
132
+
133
tmpdir := t.TempDir()
134
barCharVisualSchema := func() *schema.Schema {
135
return &schema.Schema{
0 commit comments