forked from python-kasa/python-kasa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
43 lines (35 loc) · 722 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]
envlist=py37,py38,flake8,lint,coverage
skip_missing_interpreters = True
isolated_build = True
[testenv]
whitelist_externals =
poetry
coverage
commands =
poetry install -v
poetry run pytest --cov kasa/tests/
[testenv:clean]
deps = coverage
skip_install = true
commands = coverage erase
[testenv:py37]
commands = coverage run -m pytest {posargs}
[testenv:py38]
commands = coverage run -m pytest {posargs}
[testenv:coverage]
basepython = python3.8
skip_install = true
deps = coverage[toml]
commands =
coverage report
coverage html
[testenv:flake8]
deps=
flake8
flake8-docstrings
commands=flake8 kasa
[testenv:lint]
deps = pre-commit
skip_install = true
commands = pre-commit run --all-files