Browse Source

skip test on python2.6, where email.parser.Parser.parsestr() misbehaves.

Jelmer Vernooij 10 years ago
parent
commit
bd4df4ecbb
1 changed files with 4 additions and 0 deletions
  1. 4 0
      dulwich/tests/test_patch.py

+ 4 - 0
dulwich/tests/test_patch.py

@@ -19,6 +19,7 @@
 """Tests for patch.py."""
 
 from io import BytesIO, StringIO
+import sys
 
 from dulwich.objects import (
     Blob,
@@ -78,6 +79,9 @@ class WriteCommitPatchTests(TestCase):
 class ReadGitAmPatch(TestCase):
 
     def test_extract_string(self):
+        if sys.version_info[:2] <= (2, 6):
+            raise SkipTest("email.parser.Parser.parsestr() inserts extra lines")
+
         text = b"""From ff643aae102d8870cac88e8f007e70f58f3a7363 Mon Sep 17 00:00:00 2001
 From: Jelmer Vernooij <jelmer@samba.org>
 Date: Thu, 15 Apr 2010 15:40:28 +0200