From a0a7f9feda5296f89c76a5e4b4bbfb1fc61e3fb5 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 6 Jul 2015 17:22:52 +0200 Subject: [PATCH] Skip test_file_absolute_expanded on Windows. --- tests/utils/test_urlutils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/utils/test_urlutils.py b/tests/utils/test_urlutils.py index 662d00539..736827860 100644 --- a/tests/utils/test_urlutils.py +++ b/tests/utils/test_urlutils.py @@ -174,6 +174,7 @@ class TestFuzzyUrl: url = urlutils.fuzzy_url('/foo') assert url == QUrl('file:///foo') + @pytest.mark.posix def test_file_absolute_expanded(self, os_mock): """Make sure ~ gets expanded correctly.""" os_mock.path.exists.return_value = True