pyicloud/tox.ini

25 lines
404 B
INI
Raw Normal View History

[tox]
2022-02-16 21:14:45 +01:00
envlist = py37, py38, py39, py310, lint
2022-02-14 23:41:53 +01:00
skip_missing_interpreters = True
[gh-actions]
python =
2022-02-16 21:14:45 +01:00
3.7: py37, lint
2022-02-14 23:41:53 +01:00
3.8: py38
3.9: py39
3.10: py310
[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]
ignore_errors = True
commands =
black --check --fast .
pylint pyicloud tests
deps =
-r{toxinidir}/requirements_all.txt