ceph/qa/tox.ini
Sebastian Wagner 04e586f90a
global,tox.ini: add mypy-constrains.txt
let's avoid getting new versions of those packages by accident.
Unfortunately this means we have to manually update those
packages regurarly.

Signed-off-by: Sebastian Wagner <sewagner@redhat.com>
2021-06-16 12:37:46 +02:00

36 lines
804 B
INI

[tox]
envlist = flake8, mypy, pytest
skipsdist = True
[testenv:flake8]
basepython = python3
deps=
flake8
commands=flake8 --select=F,E9 --exclude=venv,.tox
[testenv:mypy]
basepython = python3
deps =
mypy
types-boto
types-requests
types-jwt
types-paramiko
types-PyYAML
types-cryptography
types-python-dateutil
-c{toxinidir}/../src/mypy-constrains.txt
commands = mypy {posargs:.}
[testenv:import-tasks]
basepython = python3
deps = {env:TEUTHOLOGY_GIT:git+https://github.com/ceph/teuthology.git@master}#egg=teuthology[coverage,orchestra,test]
commands = python test_import.py {posargs:tasks/**/*.py}
[testenv:pytest]
basepython = python3
deps =
{env:TEUTHOLOGY_GIT:git+https://github.com/ceph/teuthology.git@master}#egg=teuthology[test]
httplib2
commands = pytest -vv tasks/tests