File: tox.ini

package info (click to toggle)
pytest-pep8 1.0.6-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 152 kB
  • sloc: python: 231; makefile: 5
file content (22 lines) | stat: -rw-r--r-- 425 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[tox]
envlist=py26,py27,py27-pytesttrunk,py33,py-xdist,py34

[testenv]
deps=pytest
commands= 
    py.test --junitxml={envlogdir}/junit-{envname}.xml {posargs}

[testenv:py27-pytesttrunk]
deps = pytest

[testenv:py-xdist]
basepython=python
deps={[testenv]deps}
     pytest-xdist 
commands=
    py.test -n3 --junitxml={envlogdir}/junit-{envname}.xml {posargs}

[pytest]
addopts=--pep8
pep8ignore = E128
#pep8maxlinelength = 66