blob: b2cf450c6c339b1f67ae40fde48a4388eb11413f (
plain) (
blame)
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
|
# Tox configuration file
# Read more under https://tox.readthedocs.org/
# THIS SCRIPT IS SUPPOSED TO BE AN EXAMPLE. MODIFY IT ACCORDING TO YOUR NEEDS!
[tox]
minversion = 1.8
envlist = py27,py33,py34,flake8
skip_missing_interpreters = True
[testenv]
changedir = tests
commands =
py.test {posargs}
deps =
pytest
-r{toxinidir}/requirements.txt
[testenv:flake8]
changedir = {toxinidir}
deps = flake8
commands = flake8 setup.py git_deps tests
# Options for pytest
[pytest]
addopts = -rsxXf
|