Skip to content

Commit

Permalink
fix: correct coverage features (filecoin-project#825)
Browse files Browse the repository at this point in the history
This caused problems on publish because the `fil_ipld_actor` is a dev.

However, we don't actually need a wasm-coverage feature anyways.
  • Loading branch information
Stebalien authored Sep 1, 2022
1 parent 6071831 commit 4cc8120
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: integration
key: v3
command: test
args: --package fvm_integration_tests --features wasm-coverage --package "*actor"
args: --package fvm_integration_tests --package "*actor"
- name: conformance
key: v3
command: test
Expand Down
1 change: 0 additions & 1 deletion testing/integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,4 @@ fil_syscall_actor = { path = "tests/fil-syscall-actor" }

[features]
default = ["fvm/testing", "fvm_shared/testing"]
wasm-coverage = ["fil_ipld_actor/coverage"]
m2-native = []
5 changes: 2 additions & 3 deletions testing/integration/tests/fil-ipld-actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@ publish = false
fvm_ipld_encoding = { version = "0.2.2", path = "../../../../ipld/encoding" }
fvm_sdk = { version = "3.0.0-alpha.1", path = "../../../../sdk" }
fvm_shared = { version = "3.0.0-alpha.1", path = "../../../../shared" }
minicov = {version = "0.2", optional = true}

[features]
coverage = ["minicov"]
[target.'cfg(coverage)'.dependencies]
minicov = "0.2"

[build-dependencies]
substrate-wasm-builder = "4.0.0"

0 comments on commit 4cc8120

Please sign in to comment.