Logging handler to send logs to your OpenSearch cluster with bulk SSL. Forked from https://github.com/logzio/logzio-python-handler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

26 lines
488 B

[tox]
minversion = 1.7.2
envlist = flake8, py3flake8, py35, py36, py37, py38, py39, pypy, pypy3
skip_missing_interpreters = true
[testenv]
deps =
future
requests
pytest
pytest-cov
passenv = CI TRAVIS TRAVIS_*
commands = pytest --cov-report term-missing --cov logzio tests -v
[testenv:flake8]
basepython = python3.9
deps = flake8
commands = flake8 logzio
[testenv:py3flake8]
basepython = python3.9
deps = flake8
commands = flake8 logzio
[gh-actions]
python = 3.9: py39