Skip to content

Commit 67737b5

Browse files
committed
Remove #[ignore]
1 parent e790b8a commit 67737b5

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

dev_support/test.sh

+1-6
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,4 @@ echoStep "Check clippy"
2626
cargo clippy --all-targets --all-features -- -D warnings
2727

2828
echoStep "Test"
29-
cargo test -r --all
30-
31-
if [ "$1" == "run-ignored" ]; then
32-
echoStep "Test ignored"
33-
cargo test -r --all -- --ignored
34-
fi
29+
cargo test -r --all

src/lvmt/tests.rs

-2
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ fn test_lvmt_store<D: DatabaseTrait>(backend: D, num_keys: usize) {
132132
}
133133

134134
#[test]
135-
#[ignore]
136135
fn test_lvmt_store_rocksdb() {
137136
let db_path = "__test_lvmt_store";
138137

@@ -145,7 +144,6 @@ fn test_lvmt_store_rocksdb() {
145144
}
146145

147146
#[test]
148-
#[ignore]
149147
fn test_lvmt_store_inmemory() {
150148
let backend = InMemoryDatabase::empty();
151149
test_lvmt_store::<InMemoryDatabase>(backend, 100000);

0 commit comments

Comments
 (0)