django-embed-video/docs/development/testing.rst
2013-08-22 14:31:33 +02:00

34 lines
450 B
ReStructuredText

Testing
==============================================
Requirements
-------------
You need ``nose``, ``mock`` and ``south`` libraries to run tests.
::
pip install nose
pip install mock
pip install south
Running tests
------------------
Run tests with this command:
::
python setup.py test
Be sure to run it before each commit and fix broken tests.
Run tests with coverage:
::
coverage run setup.py test
coverage report