2014-06-27 16:44:28 +04:00
|
|
|
Pillow Tests
|
|
|
|
============
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2014-06-27 16:45:39 +04:00
|
|
|
Test scripts are named ``test_xxx.py`` and use the ``unittest`` module. A base class and helper functions can be found in ``helper.py``.
|
2013-03-16 00:47:14 +04:00
|
|
|
|
2015-03-02 01:28:24 +03:00
|
|
|
Dependencies
|
2014-08-08 14:51:06 +04:00
|
|
|
-----------
|
|
|
|
|
2014-08-08 14:54:14 +04:00
|
|
|
Install::
|
|
|
|
|
2014-08-08 14:51:06 +04:00
|
|
|
pip install coverage nose
|
|
|
|
|
2014-06-27 16:44:28 +04:00
|
|
|
Execution
|
|
|
|
---------
|
|
|
|
|
2014-08-12 17:37:49 +04:00
|
|
|
**If Pillow has been built in-place**
|
2013-03-16 00:47:14 +04:00
|
|
|
|
2014-08-12 17:37:49 +04:00
|
|
|
To run an individual test::
|
|
|
|
|
|
|
|
python Tests/test_image.py
|
|
|
|
|
|
|
|
Run all the tests from the root of the Pillow source distribution::
|
|
|
|
|
|
|
|
nosetests -vx Tests/test_*.py
|
2014-06-24 15:03:10 +04:00
|
|
|
|
2014-06-27 16:44:53 +04:00
|
|
|
Or with coverage::
|
2014-06-24 15:03:10 +04:00
|
|
|
|
2014-08-12 17:37:49 +04:00
|
|
|
coverage run --append --include=PIL/* -m nose -vx Tests/test_*.py
|
2014-06-24 15:03:10 +04:00
|
|
|
coverage report
|
|
|
|
coverage html
|
|
|
|
open htmlcov/index.html
|
2013-03-16 00:47:14 +04:00
|
|
|
|
2014-08-12 17:37:49 +04:00
|
|
|
**If Pillow has been installed**
|
|
|
|
|
2014-06-27 16:44:53 +04:00
|
|
|
To run an individual test::
|
2013-03-16 00:47:14 +04:00
|
|
|
|
2014-08-12 17:37:49 +04:00
|
|
|
./test-installed.py Tests/test_image.py
|
|
|
|
|
|
|
|
Run all the tests from the root of the Pillow source distribution::
|
|
|
|
|
|
|
|
./test-installed.py
|
|
|
|
|
|
|
|
|
2014-08-08 14:51:06 +04:00
|
|
|
|