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 8, 2023
1 parent 326cf75 commit e303af1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ jobs:
run: sysctl hw.model

- name: Hypervisor should still be running, verify it's QEMU
run: ps aux | grep -q qemu
run: ps aux | grep -v grep | grep -q qemu

test-custom-vm-image:
timeout-minutes: 5
Expand Down 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 e303af1

Please sign in to comment.