Use `ignore` flag in grcov call instead of `ignore-dirs`

See https://github.com/mozilla/grcov/issues/193
This commit is contained in:
Alexander Niederbühl 2020-01-12 14:23:36 +01:00
parent ae0f8cf4ef
commit 26403a67d7
1 changed files with 1 additions and 1 deletions

View File

@ -11,6 +11,6 @@ fi
### Run grcov ##################################################################
zip -0 ccov.zip `find . \( -name "pyo3*.gc*" \) -print`;
./grcov ccov.zip -s . -t lcov --llvm --branch --ignore-not-existing --ignore-dir "/*" -o lcov.info;
./grcov ccov.zip -s . -t lcov --llvm --branch --ignore-not-existing --ignore "/*" -o lcov.info;
bash <(curl -s https://codecov.io/bash) -f lcov.info;