1# Despise http://docs.pytest.org/en/latest/goodpractices.html# until
2# https://github.com/pytest-dev/pytest/issues/567 is fixed please to not attempt
3# to merge this into setup.cfg
4[pytest]
5norecursedirs = . .svn jira _build tmp* lib/third lib *.egg bin distutils build docs demo
6python_files = *.py
7addopts = -s -p no:xdist --ignore=setup.py --tb=long -rxX -v --color=yes --maxfail=10 --junitxml=build/results.xml --cov-report=xml --cov jira
8
9testpaths = tests
10# --maxfail=2 -n4
11# -n4              runs up to 4 parallel procs
12# --maxfail=2      fail fast, dude
13# --durations=3    report the top 3 longest tests
14
15# these are important for distributed testing, to speedup their execution we minimize what we sync
16rsyncdirs = . jira demo docs
17rsyncignore = .hg .git
18pep8ignore = E501 E265 E127 E901 E128 E402
19pep8maxlinelength = 1024
20