File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ addons:
30
30
- libcurl4-openssl-dev
31
31
- libelf-dev
32
32
- libdw-dev
33
+ - binutils-dev
33
34
after_success : |
34
35
[ $TRAVIS_BRANCH = master ] &&
35
36
[ $TRAVIS_PULL_REQUEST = false ] &&
Original file line number Diff line number Diff line change 37
37
if [ -n " $with_plugin " ]; then
38
38
cargo test --manifest-path regex_macros/Cargo.toml --no-run --verbose
39
39
kcov \
40
+ --verify \
40
41
--include-pattern ' /regex/src/' \
41
42
" $tmpdir /plugin" \
42
43
$( ls -t ./regex_macros/target/debug/plugin-* | head -n1)
45
46
cargo test --no-run --verbose
46
47
for t in ${tests[@]} ; do
47
48
kcov \
49
+ --verify \
48
50
--include-pattern ' /regex/src/' \
49
51
" $tmpdir /$t " \
50
52
$( ls -t ./target/debug/" $t " -* | head -n1)
51
53
done
52
54
53
55
if [ -n " $coveralls_id " ]; then
54
- kcov --coveralls-id=$coveralls_id --merge target/cov " $tmpdir " /*
56
+ kcov --verify -- coveralls-id=$coveralls_id --merge target/cov " $tmpdir " /*
55
57
else
56
- kcov --merge target/cov " $tmpdir " /*
58
+ kcov --verify -- merge target/cov " $tmpdir " /*
57
59
fi
You can’t perform that action at this time.
0 commit comments