Skip to content

Commit b2ae2cc

Browse files
ci: Re-run tests 3 times to ensure it's not a false positive
1 parent ad6c4d6 commit b2ae2cc

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ jobs:
3939
neovim: true
4040
version: ${{ matrix.version }}
4141
- name: Run tests
42-
run: make test
42+
run: make test-ci

Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ clean:
22
nvim --headless --clean -n -c "lua vim.fn.delete('./tests/.deps', 'rf')" +q
33
test:
44
nvim --headless --clean -u tests/test.lua "$(FILE)"
5+
# Re-run CI tests 3 times before failing, to avoid reporting false negatives
6+
test-ci:
7+
for i in {1..3}; do nvim --headless --clean -u tests/test.lua && break || sleep 1; done
58
vim_docs:
69
./scripts/build_docs.sh
710
api_docs:

0 commit comments

Comments
 (0)