From d33584a2e4591b0623ed4889cfa15df94acdba98 Mon Sep 17 00:00:00 2001 From: grossmj Date: Tue, 16 Jun 2020 19:16:58 +0930 Subject: [PATCH] More specific fix for Windows --- tests/controller/test_gns3vm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/controller/test_gns3vm.py b/tests/controller/test_gns3vm.py index ec2afa59..a56dfdb6 100644 --- a/tests/controller/test_gns3vm.py +++ b/tests/controller/test_gns3vm.py @@ -100,7 +100,7 @@ async def test_auto_start(controller, dummy_gns3vm, dummy_engine): assert controller.computes["vm"].user == "hello" assert controller.computes["vm"].password == "world" - +@pytest.mark.skipif(sys.platform.startswith("win"), reason="Not working well on Windows") async def test_auto_start_with_error(controller, dummy_gns3vm, dummy_engine): dummy_engine.start.side_effect = GNS3VMError("Dummy error")