blob: 448dae5045603741a3353d481faec09bfabeffb1 (
plain)
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
29
|
[aliases]
dev = develop easy_install webtest[tests]
[bdist_wheel]
universal=1
[nosetests]
verbosity=2
detailed-errors = True
with-doctest = True
doctest-extension = rst
doctest-fixtures = _fixt
# XXX: docs/index.rst requires lxml
include = docs
exclude = (CHANGELOG|changelog|contributing).rst
cover-package=webtest
doctest-options = +ELLIPSIS,+NORMALIZE_WHITESPACE
[tool:pytest]
addopts = -p no:warnings
--doctest-modules
--doctest-glob='*.rst'
--ignore=docs/
--ignore=CHANGES.rst
--ignore=setup.py
--ignore=bootstrap.py
--ignore=examples/
--ignore=docs/conf.py
doctest_optionflags= NORMALIZE_WHITESPACE ELLIPSIS
|