Skip to content

Commit

Permalink
Fix broken test-vm-shutdown tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-carlborg committed Dec 5, 2023
1 parent 484a055 commit a7e5bc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ jobs:
run: true

- name: Verify VM is still running
run: ps aux | grep -q qemu
run: ps aux | grep -v grep | grep -q qemu

test-vm-shutdown:
timeout-minutes: 5
Expand All @@ -308,7 +308,7 @@ jobs:
run: true

- name: Verify VM is not running
run: ps aux | grep -q -v qemu
run: ps aux | grep -v grep | grep -q -v qemu

test-sync-files:
timeout-minutes: 5
Expand Down

0 comments on commit a7e5bc9

Please sign in to comment.