Commit 9801d419 authored by Tim Graham's avatar Tim Graham
Browse files

Skipped a problematic file_storage test on Windows.

parent 2d5da57f
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -532,6 +532,10 @@ class FileFieldStorageTests(SimpleTestCase):
            for o in objs:
                o.delete()

    @unittest.skipIf(
        sys.platform.startswith('win'),
        "Windows supports at most 260 characters in a path.",
    )
    def test_extended_length_storage(self):
        # Testing FileField with max_length > 255. Most systems have filename
        # length limitation of 255. Path takes extra chars.