1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Doc tweaks.

This commit is contained in:
Carl Meyer 2011-03-14 14:04:45 -04:00
parent 395a6f0639
commit 1fcf4fa7d5

View file

@ -28,14 +28,19 @@ just run the following command::
Running tests directly with Nose
--------------------------------
Create a virtualenv, and install required packages::
If you want to run only a selection of the tests, you'll need to run them
directly with nose instead. Create a virtualenv, and install required
packages::
mkvirtualenv pip_dev
pip install nose virtualenv scripttest mock
pip install nose virtualenv scripttest mock
Run nosetests::
nosetests
nosetests
Or select just a single test file to run::
cd tests; nosetests test_upgrade.py
Troubleshooting