forked from keras-team/keras
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.coveragerc
More file actions
26 lines (24 loc) · 705 Bytes
/
.coveragerc
File metadata and controls
26 lines (24 loc) · 705 Bytes
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
[report]
# Regexes for lines to exclude from consideration
exclude_lines =
pragma: no cover
os.remove
except ImportError
# Don't complain if tests don't hit defensive assertion code:
raise ImportError
raise NotImplementedError
# Don't complain if legacy support codes are not performed:
if original_keras_version == '1':
fail_under = 86
show_missing = True
omit =
keras/applications/*
keras/preprocessing/*
keras/datasets/*
keras/layers/cudnn_recurrent.py
keras/legacy/*
keras/utils/multi_gpu_utils.py
keras/backend/numpy_backend.py
keras/backend/theano_backend.py
keras/backend/tensorflow_backend.py
keras/backend/cntk_backend.py