Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alpaca00/pytest-chic-report
This pytest plugin allows you to send a summary of your tests to messengers, as well as print a summary of the tests in the terminal.
https://github.com/alpaca00/pytest-chic-report
Last synced: 27 days ago
JSON representation
This pytest plugin allows you to send a summary of your tests to messengers, as well as print a summary of the tests in the terminal.
- Host: GitHub
- URL: https://github.com/alpaca00/pytest-chic-report
- Owner: Alpaca00
- Created: 2023-01-03T13:50:55.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-01-31T19:15:13.000Z (almost 2 years ago)
- Last Synced: 2024-10-12T09:42:04.923Z (27 days ago)
- Language: Python
- Homepage: https://pypi.org/project/pytest-chic-report/
- Size: 219 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## pytest-chic-report
This pytest plugin allows you to send a summary of your tests to messengers,
as well as print a summary of the tests in the terminal.The summary is optional and can be turned on or off as desired.
## Installation
```
pip install pytest-chic-report
```
**You need require plugin in a test module or a conftest.py**
```
pytest_plugins = ["pytest_chic_report.plugin"]
```#### **The following options are available for the pytest-chic-report plugin:**
```
--terminal_short > True | False
Printing summary in the terminal.--terminal_all > True | False
Printing name of all tests in the terminal.
--terminal_failed > True | False
Printing name of failed tests in the terminal.
--terminal_errors > True | False
Printing name of error tests in the terminal.
--ssl_verify > True | False
Set the TLS certificate verification.
--slack_webhook > Incoming WebHooks type of string
Send a Slack message of summary to a channel via a absolute path of webhook.
--teams_webhook > Incoming WebHooks type of string
Send a Teams message of summary to a channel via a absolute path of webhook.
--messenger_failed > True | False
Adding an additional template of failed list tests to the message.
--messenger_errors > True | False
Adding an additional template of errors list tests to the message.
--messenger_all > True | False
Adding an additional template of list tests to the message.
```
#### **Short summary in the Slack**#### **Short summary in the Teams**
#### **Short summary in the terminal**
#### **The link to additional informations** [here](./docs/details.md)