Skip to content
This repository was archived by the owner on Aug 25, 2024. It is now read-only.

Commit 1eb908d

Browse files
author
John Andersen
authored
ci: Plugin tests no longer always exit cleanly
Fixes: #50 Signed-off-by: John Andersen <john.s.andersen@intel.com>
1 parent ef558d9 commit 1eb908d

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.ci/run.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
set -e
33

44
function run_plugin() {
5-
python setup.py install && cd "$PLUGIN" && coverage run setup.py test && cd -
5+
python setup.py install
6+
cd "$PLUGIN"
7+
coverage run setup.py test
8+
coverage report -m
9+
cd -
610

711
if [ "x$PLUGIN" = "x." ]; then
812
./scripts/create.sh feature travis_test_feature

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
### Fixed
1313
- Corrected maxsplit in util.cli.parser
1414
- Check that dtype is a class in Tensorlfow DNN
15+
- CI script no longer always exits 0 for plugin tests
1516

1617
## [0.1.2] - 2019-03-29
1718
### Added

0 commit comments

Comments
 (0)