2014-10-06 05:59:30 +02:00
|
|
|
[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
|
2022-02-16 20:00:29 +01:00
|
|
|
3.9: py39
|
|
|
|
3.10: py310
|
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]
|
|
|
|
ignore_errors = True
|
|
|
|
commands =
|
|
|
|
black --check --fast .
|
|
|
|
pylint pyicloud tests
|
|
|
|
deps =
|
|
|
|
-r{toxinidir}/requirements_all.txt
|