Metadata-Version: 2.1
Name: vedro-gitlab-reporter
Version: 0.2.1
Summary: GitLab reporter with collapsable sections for Vedro framework
Home-page: https://github.com/nikitanovosibirsk/vedro-gitlab-reporter
Author: Nikita Tsvetkov
Author-email: nikitanovosibirsk@yandex.com
License: Apache-2.0
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Typing :: Typed
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Vedro GitLab Reporter

[![Codecov](https://img.shields.io/codecov/c/github/nikitanovosibirsk/vedro-gitlab-reporter/master.svg?style=flat-square)](https://codecov.io/gh/nikitanovosibirsk/vedro-gitlab-reporter)
[![PyPI](https://img.shields.io/pypi/v/vedro-gitlab-reporter.svg?style=flat-square)](https://pypi.python.org/pypi/vedro-gitlab-reporter/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/vedro-gitlab-reporter?style=flat-square)](https://pypi.python.org/pypi/vedro-gitlab-reporter/)
[![Python Version](https://img.shields.io/pypi/pyversions/vedro-gitlab-reporter.svg?style=flat-square)](https://pypi.python.org/pypi/vedro-gitlab-reporter/)

GitLab (>=12.0) reporter with [collapsable sections](https://docs.gitlab.com/ee/ci/jobs/#custom-collapsible-sections) for [Vedro](https://github.com/nikitanovosibirsk/vedro) framework

## Installation

```shell
$ pip3 install vedro-gitlab-reporter
```

```python
# ./bootstrap.py
import vedro
from vedro_gitlab_reporter import GitlabReporter

vedro.run(plugins=[GitlabReporter()])
```

```shell
$ python3 bootstrap.py -r gitlab -vvv
```

## Documentation

### Verbose Levels

`-v` — show exception and collapsable steps

`-vv` — show exception, steps and collapsable variables

`-vvv` — show exception, steps and collapsable scope


