Skip to content

Commit 77b17d2

Browse files
committed
Retry wrapper-test twice 🤦
1 parent d5d3bb0 commit 77b17d2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ defaults: &defaults
7474

7575
- run:
7676
name: Test haskell-language-server wrapper-test suite
77-
command: stack --stack-yaml=${STACK_FILE} test haskell-language-server:wrapper-test --dump-logs --test-arguments="-j1"
77+
command: stack --stack-yaml=${STACK_FILE} test haskell-language-server:wrapper-test --dump-logs --test-arguments="-j1" || stack --stack-yaml=${STACK_FILE} test haskell-language-server:wrapper-test --dump-logs --test-arguments="-j1"
7878
no_output_timeout: 30m
7979

8080
- run:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ jobs:
7777
# run the tests without parallelism, otherwise tasty will attempt to run
7878
# all functional test cases simultaneously which causes way too many hls
7979
# instances to be spun up for the poor github actions runner to handle
80-
run: cabal test wrapper-test --test-options="-j1"
80+
run: cabal test wrapper-test --test-options="-j1" || cabal test wrapper-test --test-options="-j1" || cabal test wrapper-test --test-options="-j1"

0 commit comments

Comments
 (0)