forked from zigpy/bellows
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
26 lines (22 loc) · 634 Bytes
/
tox.ini
File metadata and controls
26 lines (22 loc) · 634 Bytes
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
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = py34, py35, py36, lint
skip_missing_interpreters = True
[testenv]
setenv = PYTHONPATH = {toxinidir}
install_command = pip install --process-dependency-links {opts} {packages}
commands = py.test --cov --cov-report=
deps =
coveralls
pytest
pytest-cov
[testenv:lint]
basepython = python3
deps = flake8
commands = flake8
[flake8]
ignore = E501
max-complexity = 16