Skip to content

Commit

Permalink
Mark dulwich.tests.compat.test_client.DulwichTCPClientTest as expecte…
Browse files Browse the repository at this point in the history
…dFailure on windows.
  • Loading branch information
garyvdm committed May 25, 2015
1 parent 0c6651d commit 06fc0df
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions dulwich/tests/compat/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
from dulwich.tests import (
get_safe_env,
SkipTest,
expectedFailure,
)
from dulwich.tests.utils import (
skipIfPY3,
Expand Down Expand Up @@ -305,6 +306,11 @@ def _client(self):
def _build_path(self, path):
return path.encode(sys.getfilesystemencoding())

if sys.platform == 'win32':
@expectedFailure
def test_fetch_pack_no_side_band_64k(self):
DulwichClientTestBase.test_fetch_pack_no_side_band_64k(self)


class TestSSHVendor(object):
@staticmethod
Expand Down

0 comments on commit 06fc0df

Please sign in to comment.