forked from stante/keras-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pytest.ini
26 lines (22 loc) · 812 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
# Configuration of py.test
[pytest]
addopts=-v
-n 2
--durations=10
--cov-report term-missing
--cov=keras
# Do not run tests in the build folder
norecursedirs= build
# PEP-8 The following are ignored:
# E402 module level import not at top of file - temporary measure to continue adding ros python packaged in sys.path
# E731 do not assign a lambda expression, use a def
pep8ignore=* E402 \
* E731 \
* W503
examples/improved_wgan.py E501 \
keras_contrib/applications/densenet.py E501 \
keras_contrib/applications/nasnet.py E501 \
keras_contrib/applications/resnet.py E501 \
keras_contrib/applications/wide_resnet.py E501 \
keras_contrib/datasets/pascal_voc.py E501 \
pep8maxlinelength = 88