From e52ed04947acd27a120cb2a86e3a92587a1a76a4 Mon Sep 17 00:00:00 2001 From: Jace Browning Date: Sat, 27 Apr 2024 17:42:27 -0400 Subject: [PATCH] Skip another test on Windows --- tests/test_api.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_api.py b/tests/test_api.py index bf4a03a..0e454e9 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -253,6 +253,7 @@ def config_with_link(config): return config + @pytest.mark.skipif(os.name == "nt", reason="Test does not work on Windows") def it_should_create_links(config_with_link): expect(gitman.install(depth=1)) == True