forked from morepath/morepath
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
28 lines (25 loc) · 723 Bytes
/
tox.ini
File metadata and controls
28 lines (25 loc) · 723 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
27
28
[tox]
envlist = py27,pypy,py33,py34,pep8
[testenv]
deps=
-e{toxinidir}[test]
-e{toxinidir}/fixture_packages/base
-e{toxinidir}/fixture_packages/sub
-e{toxinidir}/fixture_packages/no_mp
-e{toxinidir}/fixture_packages/no_mp_sub
-e{toxinidir}/fixture_packages/ns
-e{toxinidir}/fixture_packages/no_mp_ns
-e{toxinidir}/fixture_packages/ns2
-e{toxinidir}/fixture_packages/entry-point
-e{toxinidir}/fixture_packages/under_score
commands=
pip install --upgrade pip
pip install --upgrade setuptools
py.test morepath --cov morepath {posargs}
[testenv:pep8]
basepython = python2
deps = {[testenv]deps}
flake8
commands = flake8 morepath
[flake8]
ignore = N801