Skip to content

Commit

Permalink
ci: don't want to run tests silently
Browse files Browse the repository at this point in the history
  • Loading branch information
rgoulter committed May 18, 2024
1 parent 6fffb38 commit 89461d3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/vader-vim.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
# Uploaded release compiled with recent Java.
export JAVA_HOME=$JAVA_HOME_21_X64
export PATH=c-worksheet-instrumentor-0.2.6/bin:$PATH
vim -Es -Nu init.vim -c 'silent Vader! test/*.vader'
vim -Es -Nu init.vim -c 'Vader! test/*.vader'
timeout-minutes: 2

- name: Kill Server
Expand All @@ -65,20 +65,20 @@ jobs:
- name: Test Vim (with bad c-worksheetify-server)
run: |
export PATH=test/bad_server_command:$PATH
vim -Es -Nu init.vim -c 'silent Vader! test/bad_server_command/*.vader'
vim -Es -Nu init.vim -c 'Vader! test/bad_server_command/*.vader'
timeout-minutes: 2

- name: Test Vim (with c-worksheetify-server not on PATH)
run: |
vim -Es -Nu init.vim -c 'silent Vader! test/command_not_found/*.vader'
vim -Es -Nu init.vim -c 'Vader! test/command_not_found/*.vader'
timeout-minutes: 2

- name: Test NeoVim
run: |
# Uploaded release compiled with recent Java.
export JAVA_HOME=$JAVA_HOME_21_X64
export PATH=c-worksheet-instrumentor-0.2.6/bin:$PATH
nvim -Es -u init.vim -c 'silent Vader! test/*.vader'
nvim -Es -u init.vim -c 'Vader! test/*.vader'
timeout-minutes: 2

- name: Kill Server
Expand All @@ -91,11 +91,11 @@ jobs:
- name: Test NeoVim (with bad c-worksheetify-server)
run: |
export PATH=test/bad_server_command:$PATH
nvim -Es -u init.vim -c 'silent Vader! test/bad_server_command/*.vader'
nvim -Es -u init.vim -c 'Vader! test/bad_server_command/*.vader'
timeout-minutes: 2

- name: Test NeoVim (with bad c-worksheetify-server)
run: |
export PATH=test/bad_server_command:$PATH
nvim -Es -u init.vim -c 'silent Vader! test/bad_server_command/*.vader'
nvim -Es -u init.vim -c 'Vader! test/bad_server_command/*.vader'
timeout-minutes: 2

0 comments on commit 89461d3

Please sign in to comment.