]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add TestSkipped as another interesting item defined by test_support.
authorFred Drake <fdrake@acm.org>
Mon, 21 Aug 2000 16:55:57 +0000 (16:55 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 21 Aug 2000 16:55:57 +0000 (16:55 +0000)
Lib/test/README

index 94b1964b0dcdc5b8538795c7341ce44fe8ddaf63..ae39d27c91a0fb170ec2b350dcf39ed8cf80bafb 100644 (file)
@@ -145,6 +145,10 @@ provides the following useful objects:
     * TestFailed - raise this exception when your regression test detects a
       failure.
 
+    * TestSkipped - raise this if the test could not be run because the
+      platform doesn't offer all the required facilities (like large
+      file support), even if all the required modules are available.
+
     * findfile(file) - you can call this function to locate a file somewhere
       along sys.path or in the Lib/test tree - see test_linuxaudiodev.py for
       an example of its use.