-
Notifications
You must be signed in to change notification settings - Fork 0
/
noserc
30 lines (24 loc) · 1.16 KB
/
noserc
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
[nosetests]
###############################################################################
# Set verbosity; --verbosity=2 is the same as -v
# --verbosity=3 is the same as -vv
verbosity=1
###############################################################################
# Also look for doctests in test modules. Note that classes, methods and
# functions should have either doctests or non-doctest tests, not both.
doctest-tests=1
###############################################################################
# Add detail to error output by attempting to evaluate failed asserts
detailed-errors=1
###############################################################################
# Fail fast "Stop running tests after the first error or failure"
stop=1
###############################################################################
# Don't capture stdout (any stdout output will be printed immediately)
nocapture=1
###############################################################################
# Disable logging capture plugin. Logging configuration will be left intact.
nologcapture=1
# coloured output for nosetests
# https://pypi.python.org/pypi/rednose
rednose=1