From 2effb0d429b05dfaf142ec2a2b4bb3f1c74320a7 Mon Sep 17 00:00:00 2001 From: Alex Clark Date: Fri, 27 Jun 2014 08:44:53 -0400 Subject: [PATCH] Fix error(s) --- Tests/README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tests/README.rst b/Tests/README.rst index 5f828a034..be6da8722 100644 --- a/Tests/README.rst +++ b/Tests/README.rst @@ -6,12 +6,12 @@ Test scripts are named `test_xxx.py` and use the `unittest` module. A base class Execution --------- -Run the tests from the root of the Pillow source distribution: +Run the tests from the root of the Pillow source distribution:: python selftest.py nosetests Tests/test_*.py -Or with coverage: +Or with coverage:: coverage run --append --include=PIL/* selftest.py coverage run --append --include=PIL/* -m nose Tests/test_*.py @@ -19,6 +19,6 @@ Or with coverage: coverage html open htmlcov/index.html -To run an individual test: +To run an individual test:: python Tests/test_image.py