forked from cowrie/cowrie
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
43 lines (38 loc) · 875 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[tox]
skipsdist = True
envlist = lint,docs,py36,py37,py38,py39,py310
deps = -r{toxinidir}/requirements.txt
[travis]
python =
3.6: py36
3.7: py37
3.8: py38, lint, docs
3.9: py39
3.10: py310
pypy: pypy
pypy3: pypy3
[testenv]
setenv =
PYTHONPATH = {toxinidir}/src
deps =
-r{toxinidir}/requirements.txt
# libvirt-python==5.5.0
commands =
trial cowrie
[testenv:lint]
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements-dev.txt
commands =
flake8 --count --application-import-names cowrie --max-line-length=120 --statistics {toxinidir}/src
basepython = python3.8
[testenv:docs]
setenv =
PYTHONPATH = {toxinidir}/src
changedir = docs
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements-dev.txt
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
basepython = python3.8