Skip to content

Commit b7587a0

Browse files
committed
feat: remove the feature
1 parent ba2228e commit b7587a0

5 files changed

Lines changed: 1 addition & 10 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
run: scarb fmt --check --workspace
4949

5050
- name: Run tests
51-
run: snforge test --workspace --features coverage_incompatible,fuzzing --fuzzer-runs 500
51+
run: snforge test --workspace --features fuzzing --fuzzer-runs 500
5252

5353
- name: Run tests and generate coverage report
5454
run: snforge test --workspace --coverage

Scarb.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,6 @@ snforge_std.workspace = true
6767
openzeppelin_test_common = { path = "packages/test_common" }
6868
openzeppelin_testing = { path = "packages/testing" }
6969

70-
[workspace.features]
71-
coverage_incompatible = ["packages/presets/coverage_incompatible"]
72-
7370
[lib]
7471

7572
[[target.starknet-contract]]

packages/presets/Scarb.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ snforge_std.workspace = true
3838
openzeppelin_testing = { path = "../testing" }
3939
openzeppelin_test_common = { path = "../test_common" }
4040

41-
[features]
42-
coverage_incompatible = []
43-
4441
[lib]
4542

4643
[[target.starknet-contract]]

packages/presets/src/lib.cairo

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ pub mod erc20;
44
pub mod erc721;
55
pub mod eth_account;
66
pub mod interfaces;
7-
#[cfg(feature: "coverage_incompatible")]
87
pub mod meta_tx_v0;
98

109
#[cfg(test)]
@@ -18,7 +17,6 @@ pub use erc1155::ERC1155Upgradeable;
1817
pub use erc20::ERC20Upgradeable;
1918
pub use erc721::ERC721Upgradeable;
2019
pub use eth_account::EthAccountUpgradeable;
21-
#[cfg(feature: "coverage_incompatible")]
2220
pub use meta_tx_v0::MetaTransactionV0;
2321
pub use universal_deployer::UniversalDeployer;
2422
pub use vesting::VestingWallet;

packages/presets/src/tests.cairo

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ mod test_erc1155;
33
mod test_erc20;
44
mod test_erc721;
55
mod test_eth_account;
6-
#[cfg(feature: "coverage_incompatible")]
76
mod test_meta_tx_v0;
87
mod test_universal_deployer;
98
mod test_vesting;

0 commit comments

Comments
 (0)