Skip to content

Commit 726a99a

Browse files
committed
enable (some test failures)
1 parent 6d0a6f2 commit 726a99a

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,7 @@ jobs:
155155
name: Test hls-eval-plugin
156156
run: cabal test hls-eval-plugin-tests || cabal test hls-eval-plugin-tests
157157

158-
# TODO enable when it supports 9.10
159-
- if: matrix.test && matrix.ghc != '9.10'
158+
- if: matrix.test
160159
name: Test hls-splice-plugin
161160
run: cabal test hls-splice-plugin-tests || cabal test hls-splice-plugin-tests
162161

docs/support/plugin-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ For example, a plugin to provide a formatter which has itself been abandoned has
6767
| `hls-floskell-plugin` | 3 | 9.10.1 |
6868
| `hls-stan-plugin` | 3 | |
6969
| `hls-retrie-plugin` | 3 | 9.10.1 |
70-
| `hls-splice-plugin` | 3 | 9.10.1 |
70+
| `hls-splice-plugin` | 3 | |

haskell-language-server.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -949,13 +949,13 @@ flag splice
949949
manual: True
950950

951951
common splice
952-
if flag(splice) && impl(ghc < 9.10)
952+
if flag(splice)
953953
build-depends: haskell-language-server:hls-splice-plugin
954954
cpp-options: -Dhls_splice
955955

956956
library hls-splice-plugin
957957
import: defaults, pedantic, warnings
958-
if !(flag(splice) && impl(ghc < 9.10))
958+
if !(flag(splice))
959959
buildable: False
960960
exposed-modules:
961961
Ide.Plugin.Splice
@@ -984,7 +984,7 @@ library hls-splice-plugin
984984

985985
test-suite hls-splice-plugin-tests
986986
import: defaults, pedantic, test-defaults, warnings
987-
if !(flag(splice) && impl(ghc < 9.10))
987+
if !(flag(splice))
988988
buildable: False
989989
type: exitcode-stdio-1.0
990990
hs-source-dirs: plugins/hls-splice-plugin/test

0 commit comments

Comments
 (0)