Disable multipackage LSP tests on Windows. (#7360)

* Disable multi-package lsp-tests on windows.

These are consistently timing out on Windows for unknown reasons.
Disabling until we figure out how to fix the tests. See #4904

changelog_begin
changelog_end

* fix definition
This commit is contained in:
Sofia Faro 2020-09-09 13:50:30 +01:00 committed by GitHub
parent 7c9704f1ce
commit 220cfc5c79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -868,7 +868,9 @@ includePathTests damlc = testGroup "include-path"
]
multiPackageTests :: FilePath -> TestTree
multiPackageTests damlc = testGroup "multi-package"
multiPackageTests damlc
| isWindows = testGroup "multi-package (skipped)" [] -- see issue #4904
| otherwise = testGroup "multi-package"
[ testCaseSteps "IDE in root directory" $ \step -> withTempDir $ \dir -> do
step "build a"
createDirectoryIfMissing True (dir </> "a")