pytest + emoji
Project description
pytest + emoji == 😍
Do you find writing tests tedious or boring? It can be - but it doesn’t need to be.
pytest
pytest is a mature testing framework for Python that is developed by a thriving and ever-growing community of volunteers. It uses plain assert statements and regular Python comparisons. Writing tests with pytest requires little to no boilerplate code and powerful features allow easy parametrization and intelligent test selection.
It can be easily extended and has hundreds of plugins available. Distributed under the terms of the MIT license, pytest is free and open source software.
Check out pytest if you haven’t already and if you’re not sold just yet, install this plugin. Maybe that will get you motivated 😁
This pytest plugin was generated with Cookiecutter along with @hackebrot’s Cookiecutter-pytest-plugin template.
Installation
pytest-emoji is available for Python 3. 🐍
You can install pytest-emoji via pip from PyPI:
$ pip install pytest-emoji
This will automatically install pytest of version 3.0.1 or higher.
Features
This plugin adds a --emoji CLI flag to pytest, which replaces the test result indicator to emojis, both for normal and verbose mode.
😃 / PASSED 😃 for passed tests
😰 / FAILED 😰 for failed tests
😞 / xfail 😞 for xfailed tests
😲 / XPASS 😲 for xpassed tests
🙄 / SKIPPED 🙄 for skipped tests
😡 / ERROR 😡 for tests with errors
Normal mode:
$ pytest --emoji
tests/test_emoji.py 😃 😰 😞 😲 🙄 😡
Verbose mode:
$ pytest --verbose --emoji
tests/test_emoji.py::test_passed PASSED 😃
tests/test_emoji.py::test_failed FAILED 😰
tests/test_emoji.py::test_xfailed xfail 😞
tests/test_emoji.py::test_xpassed XPASS 😲
tests/test_emoji.py::test_skipped SKIPPED 🙄
tests/test_emoji.py::test_error ERROR 😡
Customization
You can also change the emojis, if you want. 😛
Add a conftest.py to your tests folder and implement the following hooks. If you wish to use the default, omit the according hook.
def pytest_emoji_passed(config):
return u'🍪 ', u'PASSED 🍪 '
def pytest_emoji_failed(config):
return u'😿 ', u'FAILED 😿 '
def pytest_emoji_skipped(config):
return u'🙈 ', u'SKIPPED 🙈 '
def pytest_emoji_error(config):
return u'💩 ', u'ERROR 💩 '
def pytest_emoji_xfailed(config):
return u'🤓 ', u'xfail 🤓 '
def pytest_emoji_xpassed(config):
return u'😜 ', u'XPASS 😜 '
Naming is important, make sure you don’t make any typos!
All of these hooks receive the pytest config object, which allows you to check options and further customize the output. All hooks need to return a tuple of str as in ('<shortletter>', '<verbose-word>').
It’s recommended for emoji to add an extra ' ' (blank) for better formatting.
Contributing
Contributions are very welcome. Tests can be run with tox.
License
Distributed under the terms of the MIT license, pytest-emoji is free and open source software
Issues
If you encounter any problems, please file an issue along with a detailed description.
Code of Conduct
Everyone interacting in the pytest-emoji project’s codebases, issue trackers, chat rooms, and mailing lists is expected to follow the PyPA Code of Conduct.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pytest-emoji-0.1.0.tar.gz
.
File metadata
- Download URL: pytest-emoji-0.1.0.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9bfccb7b2d0858d7e69bd75d0debfab9080e26581f5fe218bb0e47da339013da |
|
MD5 | 1b588a369620e9c31944d107801566d0 |
|
BLAKE2b-256 | 0ec11eebefb28a018a7dbfb12a9edb03af076224425366ad3b78acd6a6e4755b |
Provenance
File details
Details for the file pytest_emoji-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: pytest_emoji-0.1.0-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1dd2ce4b49682d0abe39a50d8cbbd318b8f9fb359f5c9824d3e4056e07687782 |
|
MD5 | 1bd979a0d2cfc212f53cfcd5109cce1c |
|
BLAKE2b-256 | 8f12500d3856142ad11426e4ff662ccf07a1e107eeec2b9c6cc508f81f265060 |