Merge pull request #453 from pganssle/fix_coverage_comment
Fix inaccurate comment
This commit is contained in:
commit
77f0974daf
|
@ -2,12 +2,14 @@
|
||||||
|
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
### Run kcov in parallel #######################################################
|
### Run kcov ###################################################################
|
||||||
|
|
||||||
rm -f target/debug/pyo3*.d
|
rm -f target/debug/pyo3*.d
|
||||||
rm -f target/debug/test_*.d
|
rm -f target/debug/test_*.d
|
||||||
rm -f target/debug/test_doc-*
|
rm -f target/debug/test_doc-*
|
||||||
|
|
||||||
|
# Note: On travis this is run with -P1 because it started failing with
|
||||||
|
# `-P $(nproc)`. kcov can probably be run in parallel if used with different CI
|
||||||
FILES=$(find . -path ./target/debug/pyo3\* -or -path ./target/debug/test_\*)
|
FILES=$(find . -path ./target/debug/pyo3\* -or -path ./target/debug/test_\*)
|
||||||
echo $FILES | xargs -n1 -P1 sh -c '
|
echo $FILES | xargs -n1 -P1 sh -c '
|
||||||
dir="target/cov/$(basename $@)"
|
dir="target/cov/$(basename $@)"
|
||||||
|
|
Loading…
Reference in a new issue