Skip to main content

pytest + emoji

Project description

PyPI Package PyPI Python Versions PyPI Package License See Build Status on Travis CI See Build Status on AppVeyor

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest-emoji-0.1.0.tar.gz (6.4 kB view hashes)

Uploaded Source

Built Distribution

pytest_emoji-0.1.0-py3-none-any.whl (8.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page