Enable real guest networking and make demos network-first
This commit is contained in:
parent
c43c718c83
commit
b01efa6452
14 changed files with 618 additions and 72 deletions
|
|
@ -85,9 +85,9 @@ def test_doctor_report_has_runtime_fields() -> None:
|
|||
assert "tun_available" in networking
|
||||
|
||||
|
||||
def test_runtime_capabilities_reports_shim_bundle() -> None:
|
||||
def test_runtime_capabilities_reports_real_bundle_flags() -> None:
|
||||
paths = resolve_runtime_paths()
|
||||
capabilities = runtime_capabilities(paths)
|
||||
assert capabilities.supports_vm_boot is False
|
||||
assert capabilities.supports_guest_exec is False
|
||||
assert capabilities.supports_guest_network is False
|
||||
assert capabilities.supports_vm_boot is True
|
||||
assert capabilities.supports_guest_exec is True
|
||||
assert capabilities.supports_guest_network is True
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue