File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ jobs:
145
145
# run the tests without parallelism to avoid running out of memory
146
146
run : cabal test ghcide --test-options="-j1 --rerun-update" || cabal test ghcide --test-options="-j1 --rerun" || LSP_TEST_LOG_COLOR=0 LSP_TEST_LOG_MESSAGES=true LSP_TEST_LOG_STDERR=true cabal test ghcide --test-options="-j1 --rerun"
147
147
148
- - if : ${{ needs.pre_job.outputs.should_skip != 'true' && matrix.test }}
148
+ - if : ${{ needs.pre_job.outputs.should_skip != 'true' && matrix.test && !(matrix.os == 'windows-latest' && matrix.ghc == '9.0.1') }}
149
149
name : Test func-test suite
150
150
env :
151
151
HLS_TEST_EXE : hls
Original file line number Diff line number Diff line change @@ -133,14 +133,12 @@ hlintTests = testGroup "hlint suggestions" [
133
133
testRefactor " ApplyRefact1.hs" " Redundant bracket"
134
134
(" {-# LANGUAGE LambdaCase #-}" : expectedLambdaCase)
135
135
136
- , ignoreInEnv [HostOS Windows , GhcVer GHC90 ] " Test make execution does not terminate for windows and ghc-9.0" $
137
- expectFailBecause " apply-refact doesn't work with cpp" $
136
+ , expectFailBecause " apply-refact doesn't work with cpp" $
138
137
testCase " apply hints works with CPP via -XCPP argument" $ runHlintSession " cpp" $ do
139
138
testRefactor " ApplyRefact3.hs" " Redundant bracket"
140
139
expectedCPP
141
140
142
- , ignoreInEnv [HostOS Windows , GhcVer GHC90 ] " Test make execution does not terminate for windows and ghc-9.0" $
143
- expectFailBecause " apply-refact doesn't work with cpp" $
141
+ , expectFailBecause " apply-refact doesn't work with cpp" $
144
142
testCase " apply hints works with CPP via language pragma" $ runHlintSession " " $ do
145
143
testRefactor " ApplyRefact3.hs" " Redundant bracket"
146
144
(" {-# LANGUAGE CPP #-}" : expectedCPP)
You can’t perform that action at this time.
0 commit comments