summaryrefslogtreecommitdiffstats
path: root/qa/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--qa/tox.ini46
1 files changed, 46 insertions, 0 deletions
diff --git a/qa/tox.ini b/qa/tox.ini
new file mode 100644
index 000000000..5b2149c49
--- /dev/null
+++ b/qa/tox.ini
@@ -0,0 +1,46 @@
+[tox]
+envlist = flake8, mypy, pytest, deadsymlinks
+skipsdist = True
+
+[testenv]
+setenv =
+ LC_ALL = C.UTF-8
+ LANG = C
+
+[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:py3]
+basepython = python3
+deps =
+ {env:TEUTHOLOGY_GIT:git+https://github.com/ceph/teuthology.git@main}#egg=teuthology[coverage,orchestra,test]
+ httplib2
+ pytest
+commands =
+ pytest --assert=plain test_import.py
+ pytest tasks/tests --suite-dir {toxinidir}/suites {posargs}
+
+[testenv:deadsymlinks]
+basepython = python3
+toxworkdir = {toxinidir}
+allowlist_externals =
+ bash
+commands =
+ bash -c '! (find . -xtype l | grep ^)'