Skip to content

Commit 8ebff67

Browse files
authored
Merge pull request #285 from jacebrowning/handle-windows-failures
Handle tests that fail on Windows
2 parents 24b44f5 + 4f4f488 commit 8ebff67

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/test_api.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,9 @@ def config_with_links(config):
298298

299299
return config
300300

301+
@pytest.mark.xfail(
302+
os.name == "nt", reason="https://github.com/jacebrowning/gitman/issues/284"
303+
)
301304
def it_should_create_links(config_with_links):
302305
expect(gitman.install(depth=1)) == True
303306
expect(os.listdir()).contains("gmd_3")
@@ -1164,6 +1167,9 @@ def git_changes(
11641167
"""
11651168
)
11661169

1170+
@pytest.mark.xfail(
1171+
os.name == "nt", reason="https://github.com/jacebrowning/gitman/issues/284"
1172+
)
11671173
def it_merges_sources(config):
11681174
config.datafile.text = strip(
11691175
"""

0 commit comments

Comments
 (0)