Commit 628cf08 1 parent b574263 commit 628cf08 Copy full SHA for 628cf08
File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
[report]
2
- fail_under = 84
2
+ # Regexes for lines to exclude from consideration
3
+ exclude_lines =
4
+ # Don't complain if tests don't hit defensive assertion code:
5
+ raise ImportError
6
+ raise NotImplementedError
7
+
8
+ fail_under = 85
3
9
show_missing = True
4
10
omit =
5
11
keras/applications/*
6
12
keras/datasets/*
13
+ keras/legacy/layers.py
Original file line number Diff line number Diff line change @@ -111,5 +111,5 @@ script:
111
111
elif [[ "$TEST_MODE" == "DOC" ]]; then
112
112
PYTHONPATH=$PWD:$PYTHONPATH py.test tests/test_documentation.py;
113
113
else
114
- PYTHONPATH=$PWD:$PYTHONPATH py.test tests/ --ignore=tests/integration_tests --ignore=tests/test_documentation.py --cov-config .coveragerc --cov=keras tests/;
114
+ PYTHONPATH=$PWD:$PYTHONPATH py.test tests/ --ignore=tests/integration_tests --ignore=tests/test_documentation.py --ignore=tests/keras/legacy/layers_test.py -- cov-config .coveragerc --cov=keras tests/;
115
115
fi
You can’t perform that action at this time.
0 commit comments