Skip to content

Commit 7565798

Browse files
authored
[skip circleci] Enable func-test suite for windows (#2296)
* Ignore tests stucking ci * Enable func-test for win and 9.0.1
1 parent 781a4e2 commit 7565798

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: .github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defaults:
55
shell: bash
66

77
# See: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#concurrency.
8-
concurrency:
8+
concurrency:
99
group: ${{ github.head_ref }}-${{ github.workflow }}
1010
cancel-in-progress: true
1111

@@ -148,7 +148,7 @@ jobs:
148148
# run the tests without parallelism to avoid running out of memory
149149
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"
150150

151-
- if: matrix.test && !(matrix.os == 'windows-latest' && matrix.ghc == '9.0.1')
151+
- if: matrix.test
152152
name: Test func-test suite
153153
env:
154154
HLS_TEST_EXE: hls

Diff for: test/functional/Main.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ main = defaultTestRunner
3434
, FunctionalLiquid.tests
3535
, HieBios.tests
3636
, Highlight.tests
37-
, Progress.tests
37+
, ignoreInEnv [HostOS Windows, GhcVer GHC90] "Tests gets stuck in ci" $ Progress.tests
3838
, Reference.tests
3939
, Symbol.tests
4040
, TypeDefinition.tests

0 commit comments

Comments
 (0)