Installation Instructions¶
If you want to experiment with TestFixtures, the easiest way to install it is to do the following in a virtualenv:
pip install testfixtures
If your package uses setuptools and you decide to use TestFixtures, then you should do one of the following:
Specify
testfixturesin thetests_requireparameter of your package’s call tosetupinsetup.py.Add an
extra_requiresparameter in your call tosetupas follows:setup( # other stuff here extras_require=dict( test=['testfixtures'], ) )