8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c460a3 commit 72cf71cCopy full SHA for 72cf71c
test/test_util.py
@@ -6,11 +6,13 @@
6
7
import os
8
9
+import sys
10
import tempfile
11
import time
12
from unittest import mock, skipIf
13
from datetime import datetime
14
15
+import pytest
16
import ddt
17
18
from git.cmd import dashify
@@ -154,6 +156,11 @@ def test_lock_file(self):
154
156
lock_file._obtain_lock_or_raise()
155
157
lock_file._release_lock()
158
159
+ @pytest.mark.xfail(
160
+ sys.platform == "cygwin",
161
+ reason="Cygwin fails here for some reason, always",
162
+ raises=AssertionError
163
+ )
164
def test_blocking_lock_file(self):
165
my_file = tempfile.mktemp()
166
lock_file = BlockingLockFile(my_file)
0 commit comments