- [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
|