Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions tests/integration_tests/security/test_custom_seccomp.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
import time
from pathlib import Path

import requests

from framework import utils


Expand Down Expand Up @@ -76,9 +74,10 @@ def test_failing_filter(uvm_plain, seccompiler):
test_microvm.basic_config(vcpu_count=1)

# Try to start the VM with error checking off, because it will fail.
# pylint: disable=bare-except
try:
test_microvm.start()
except requests.exceptions.ConnectionError:
except:
pass

# Give time for the process to get killed
Expand Down