An open API service indexing awesome lists of open source software.

https://github.com/treussart/pytest-zulip


https://github.com/treussart/pytest-zulip

pytest pytest-plugin zulip

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# pytest-zulip

Pytest report plugin for [Zulip](https://zulip.com/)

Allow to send notification on Zulip chat product.

## installation

pip install pytest-zulip

## Configure via env var

ZULIP_URL="https://x.zulipchat.com/api/v1/messages"
ZULIP_BOT_EMAIL_ADDRESS="bot@x.zulipchat.com"
ZULIP_BOT_API_KEY="API_KEY"
ZULIP_TOPIC="TOPIC"
ZULIP_STREAM="STREAM"

Optional:

ZULIP_ELLIPSIS_CHAR="…"
ZULIP_ONLY_ON_FAILED=1

## Add option to send message

pytest --notify-zulip

## Modify content via hook

def pytest_zulip_create_content(session: Session, exitstatus: Union[int, ExitCode]) -> str:
reporter = session.config.pluginmanager.get_plugin('terminalreporter')
return str(reporter.stats.get('passed', []))

## Dev

### Change version

edit

pytest_zulip/__init__.py

commit

git commit -m "v0.1.0"

tag

git tag v0.1.0

### Build package

python setup.py sdist bdist_wheel
pip install twine
twine upload dist/*