Skip to content

Commit b6cac64

Browse files
authored
Merge pull request #137 from jneira/disable-ghcide-tests
Separate ghcide tests and disable them for now
2 parents 0dfb410 + 8570216 commit b6cac64

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.circleci/config.yml

+9-2
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,16 @@ defaults: &defaults
7575
- ~/build/ghcide/.stack-work
7676

7777
- run:
78-
name: Test
78+
name: Test ghcide
7979
# Tests MUST run with -j1, since multiple ghc-mod sessions are not allowed
80-
command: stack -j 1 --stack-yaml=${STACK_FILE} test --dump-logs
80+
# command: stack -j 1 --stack-yaml=${STACK_FILE} test ghcide --dump-logs
81+
command: echo "ghcide tests disabled until they got fixed, see https://github.com/mpickering/ghcide/issues/25"
82+
no_output_timeout: 120m
83+
84+
- run:
85+
name: Test haskell-language-server
86+
# Tests MUST run with -j1, since multiple ghc-mod sessions are not allowed
87+
command: stack -j 1 --stack-yaml=${STACK_FILE} test haskell-language-server --dump-logs
8188
no_output_timeout: 120m
8289

8390
- store_test_results:

0 commit comments

Comments
 (0)