From: Brett Cannon Date: Mon, 3 Mar 2008 03:24:48 +0000 (+0000) Subject: Add a note in the main test class' docstring that the order of execution of the X-Git-Tag: v2.6a2~420 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bfbf5b37153395d1100388f2398a80766bc4dba4;p=python Add a note in the main test class' docstring that the order of execution of the tests is important. --- diff --git a/Lib/test/test_largefile.py b/Lib/test/test_largefile.py index a98aab24a1..1da0e7d1dc 100644 --- a/Lib/test/test_largefile.py +++ b/Lib/test/test_largefile.py @@ -25,6 +25,10 @@ class TestCase(unittest.TestCase): """Test that each file function works as expected for a large (i.e. > 2GB, do we have to check > 4GB) files. + NOTE: the order of execution of the test methods is important! test_seek + must run first to create the test file. File cleanup must also be handled + outside the test instances because of this. + """ def test_seek(self):