diff --git a/run_test.go b/run_test.go index e858a9c..6d79a31 100644 --- a/run_test.go +++ b/run_test.go @@ -6,6 +6,7 @@ import ( "io" "io/ioutil" "os" + "runtime" "strings" "testing" @@ -299,6 +300,10 @@ func TestSucceedRun(t *testing.T) { t.Run( fmt.Sprintf("%s/concurrency/%d", tc.format, concurrency), func(t *testing.T) { + if tc.format == "cucumber" && strings.HasPrefix(runtime.Version(), "go1.11") { + t.Skipf("skipping due to format %q and go version: %q", tc.format, runtime.Version()) + } + testSucceedRun(t, tc.format, concurrency, string(expectedOutput)) }, )