-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpytest.ini
33 lines (33 loc) · 816 Bytes
/
pytest.ini
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
30
31
32
33
[pytest]
# Options for py.test:
# Specify command line options in `addopts =` as you would do when invoking py.test directly.
# e.g. --cov-report html (or xml) for html/xml output or --junitxml junit.xml
# in order to write a coverage file that can be read by Jenkins.
testpaths =
tests
src/nlpia
console_output_style =
progress
doctest_optionflags =
ELLIPSIS
NORMALIZE_WHITESPACE
norecursedirs =
src/nlpia/book
src/book
src/nlpia/scripts
src/nlpia/second_edition
book
dist
build
.tox
addopts =
--cov nlpia
--cov-report xml
--cov-report term-missing
--cov-config .coveragerc
--verbose
--doctest-modules
--doctest-glob='test*.md'
--ignore='src/nlpia/talk.py'
--ignore='src/nlpia/second_edition'
--ignore='src/nlpia/highd.py'