pyicloud/tox.ini
2022-02-14 14:41:53 -08:00

24 lines
402 B
INI

[tox]
envlist = py36, py37, py38, lint
skip_missing_interpreters = True
[gh-actions]
python =
3.6: py36, lint
3.7: py37
3.8: py38
[testenv]
deps =
-r{toxinidir}/requirements_all.txt
commands =
{envbindir}/pytest
[testenv:lint]
basepython = python3
ignore_errors = True
commands =
black --check --fast .
pylint pyicloud tests
deps =
-r{toxinidir}/requirements_all.txt