We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7773959 commit 856a6dbCopy full SHA for 856a6db
.github/workflows/cron-ci.yaml
@@ -45,8 +45,9 @@ jobs:
45
local tool=$1; shift; "$(rustc --print target-libdir)/../bin/llvm-$tool" "$@"
46
}
47
rusttool profdata merge extra_tests/snippet-*.profraw regrtest.profraw --output codecov.profdata
48
- rusttool cov export --instr-profile codecov.profdata target/release/rustpython --format lcov >codecov.lcov
49
- lcov -r codecov.lcov '/*' -o codecov.lcov
+ rusttool cov export --instr-profile codecov.profdata target/release/rustpython --format lcov > codecov_tmp.lcov
+ lcov -e codecov_tmp.lcov "$PWD"/'*' -o codecov_tmp2.lcov
50
+ lcov -r codecov_tmp2.lcov "$PWD"/target/'*' -o codecov.lcov # remove LALRPOP-generated parser
51
- name: upload to Codecov
52
uses: codecov/codecov-action@v3
53
with:
0 commit comments