Skip to content

Commit

Permalink
chore: ignore ef blobTx test
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Aug 2, 2023
1 parent 2e1ef4d commit ab54019
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions testing/ef-tests/src/cases/blockchain_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,5 +182,14 @@ pub fn should_skip(path: &Path) -> bool {
return true
}

if path.file_name() == Some(OsStr::new("ValueOverflow.json")) {
return true
}

// TODO: re-enable when blobtx are supported
if path.file_name() == Some(OsStr::new("blobtxExample.json")) {
return true
}

false
}

0 comments on commit ab54019

Please sign in to comment.