pyicloud/tox.ini

25 lines
402 B
INI
Raw Normal View History

[tox]
2022-02-14 23:41:53 +01:00
envlist = py36, py37, py38, lint
skip_missing_interpreters = True
[gh-actions]
python =
3.6: py36, lint
3.7: py37
3.8: py38
[testenv]
deps =
2020-03-23 19:23:05 +01:00
-r{toxinidir}/requirements_all.txt
commands =
2022-02-14 23:41:53 +01:00
{envbindir}/pytest
[testenv:lint]
basepython = python3
ignore_errors = True
commands =
black --check --fast .
pylint pyicloud tests
deps =
-r{toxinidir}/requirements_all.txt