diff --git a/src/hwc/integration/deploy_an_hwc_app_test.go b/src/hwc/integration/deploy_an_hwc_app_test.go index 5463d4d3..5507467b 100644 --- a/src/hwc/integration/deploy_an_hwc_app_test.go +++ b/src/hwc/integration/deploy_an_hwc_app_test.go @@ -21,6 +21,9 @@ var _ = Describe("CF HWC Buildpack", func() { Context("deploying an hwc app with a rewrite rule", func() { BeforeEach(func() { + if os.Getenv("CF_STACK") == "windows2012R2" { + Skip("rewrite rule not supported on windows2012R2") + } app = cutlass.New(filepath.Join(bpDir, "fixtures", "windows_app_with_rewrite")) })