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
513 B

  1. [tox]
  2. minversion = 1.7.2
  3. envlist = flake8, py3flake8, python3.5, python3.6, python3.7, python3.8, python3.8, pypy, pypy3
  4. skip_missing_interpreters = true
  5. [testenv]
  6. deps =
  7. future
  8. requests
  9. pytest
  10. pytest-cov
  11. passenv = CI,TRAVIS,TRAVIS_*
  12. commands = pytest --cov-report term-missing --cov logzio tests -v
  13. [testenv:flake8]
  14. basepython = python3.9
  15. deps = flake8
  16. commands = flake8 logzio
  17. [testenv:py3flake8]
  18. basepython = python3.9
  19. deps = flake8
  20. commands = flake8 logzio
  21. [gh-actions]
  22. python = 3.9: py39