Skip to content

Commit

Permalink
Disable damlc test on Windows since it’s flaky (#1450)
Browse files Browse the repository at this point in the history
  • Loading branch information
cocreature authored and mergify[bot] committed May 29, 2019
1 parent 52997f3 commit 464ef86
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions daml-assistant/integration-tests/src/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -195,11 +195,15 @@ quickstartTests quickstartDir mvnDir = testGroup "quickstart" $
callProcessQuiet damlName ["new", quickstartDir, "quickstart-java"]
, testCase "daml build " $ withCurrentDirectory quickstartDir $
callProcessQuiet damlName ["build", "-o", "target/daml/iou.dar"]
, testCase "daml test" $ withCurrentDirectory quickstartDir $
] <>
(if isWindows then [] else -- We seem to have an issue where grpc_init sometimes locks up and the
-- whole test times out. Tracked in https://github.com/digital-asset/daml/issues/1354
[ testCase "daml test" $ withCurrentDirectory quickstartDir $
callProcessQuiet damlName ["test"]
, testCase "daml damlc test --files" $ withCurrentDirectory quickstartDir $
callProcessQuiet damlName ["damlc", "test", "--files", "daml/Main.daml"]
, testCase "sandbox startup" $
]) <>
[ testCase "sandbox startup" $
withCurrentDirectory quickstartDir $
withDevNull $ \devNull -> do
p :: Int <- fromIntegral <$> getFreePort
Expand Down

0 comments on commit 464ef86

Please sign in to comment.