From 395a6f063939dffff13374cf7aab02b2790ff6ce Mon Sep 17 00:00:00 2001 From: Christian Oudard Date: Mon, 14 Mar 2011 12:29:37 -0400 Subject: [PATCH] Added basic documentation on running unittests without setup.py. --- docs/running-tests.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/running-tests.txt b/docs/running-tests.txt index 10e5733abb1..78418267e80 100644 --- a/docs/running-tests.txt +++ b/docs/running-tests.txt @@ -25,6 +25,17 @@ just run the following command:: $ python setup.py test +Running tests directly with Nose +-------------------------------- + +Create a virtualenv, and install required packages:: + + mkvirtualenv pip_dev + pip install nose virtualenv scripttest mock + +Run nosetests:: + + nosetests Troubleshooting