加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
README.rst 553 Bytes
一键复制 编辑 原始数据 按行查看 历史
LLL 提交于 2022-06-27 15:20 . Import Upstream version 7.0.0

Pillow Tests

Test scripts are named test_xxx.py and use the unittest module. A base class and helper functions can be found in helper.py.

Dependencies

Install:

pip install pytest pytest-cov

Execution

To run an individual test:

pytest Tests/test_image.py

Or:

pytest -k test_image.py

Run all the tests from the root of the Pillow source distribution:

pytest

Or with coverage:

pytest --cov PIL --cov Tests --cov-report term
coverage html
open htmlcov/index.html
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化