From 2f6fd95ab3ff8d66bdb9437dafad83f053ed7639 Mon Sep 17 00:00:00 2001 From: Soichiro Isshiki Date: Tue, 26 Nov 2024 12:48:11 +0900 Subject: [PATCH] Fix. --- .github/workflows/rust.yml | 2 +- monoruby/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 335d567e..59d76517 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -24,7 +24,7 @@ jobs: uses: taiki-e/install-action@cargo-llvm-cov - name: Generate code coverage - run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info + run: cargo llvm-cov --features test --workspace --lcov --output-path lcov.info - name: Upload coverage to Codecov uses: codecov/codecov-action@v4 with: diff --git a/monoruby/Cargo.toml b/monoruby/Cargo.toml index b05a1414..3350ca47 100644 --- a/monoruby/Cargo.toml +++ b/monoruby/Cargo.toml @@ -33,7 +33,7 @@ perf = [] emit-cfg = ["dump-bc"] no-gems = [] no-startup = ["no-gems"] -# test = ["no-gems", "emit-asm", "emit-bc", "jit-log", "jit-debug", "deopt", "gc-log", "profile", "perf"] +test = ["no-gems", "emit-asm", "emit-bc", "jit-log", "jit-debug", "deopt", "gc-log", "profile", "perf"] [dependencies] clap = { version = "4.5.21", features = ["derive"] }