Skip program gen tests on Windows

This commit is contained in:
Anton Tayanovskyy 2021-11-23 15:07:24 -05:00
parent 4c7b9daee6
commit e4530c91f7

View file

@ -5,6 +5,7 @@ import (
"io/ioutil"
"os"
"path/filepath"
"runtime"
"strings"
"testing"
@ -164,6 +165,11 @@ func TestProgramCodegen(
testcase ProgramCodegenOptions,
) {
if runtime.GOOS == "windows" {
t.Skip("TestProgramCodegen is skipped on Windows")
}
ensureValidSchemaVersions(t)
for _, tt := range programTests {
t.Run(tt.Description, func(t *testing.T) {