2014-10-06 05:59:30 +02:00
|
|
|
[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
|
2014-10-06 05:59:30 +02:00
|
|
|
|
|
|
|
[testenv]
|
|
|
|
deps =
|
2020-03-23 19:23:05 +01:00
|
|
|
-r{toxinidir}/requirements_all.txt
|
2014-10-06 05:59:30 +02:00
|
|
|
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
|