Merge pull request #3640 from fanninpm/stable-coverage-test

Switch instrument coverage to stable
This commit is contained in:
Jeong YunWon
2022-04-19 15:38:36 +09:00
committed by GitHub
2 changed files with 1 additions and 5 deletions

View File

@@ -15,10 +15,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: llvm-tools-preview
- run: sudo apt-get update && sudo apt-get -y install lcov
- uses: actions-rs/cargo@v1
with:

View File

@@ -14,7 +14,7 @@ get_crate_name() {
case $(get_crate_name "$@") in
rustpython_*|rustpython)
EXTRA=(-Zinstrument-coverage)
EXTRA=(-Cinstrument-coverage)
;;
*) EXTRA=() ;;