Skip to content

Commit

Permalink
chore: Ignore setup tests for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
oskarth committed Dec 11, 2023
1 parent b2350d3 commit e5055de
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mopro-core/src/middleware/circom/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,7 @@ pub fn bytes_to_circuit_outputs(bytes: &[u8]) -> SerializableInputs {
mod tests {
use super::*;

#[ignore = "ignore for ci"]
#[test]
fn test_setup_prove_verify_simple() {
let wasm_path = "./examples/circom/multiplier2/target/multiplier2_js/multiplier2.wasm";
Expand Down Expand Up @@ -441,6 +442,7 @@ mod tests {
assert!(verify_res.unwrap()); // Verifying that the proof was indeed verified
}

#[ignore = "ignore for ci"]
#[test]
fn test_setup_prove_verify_keccak() {
let wasm_path =
Expand Down Expand Up @@ -495,6 +497,7 @@ mod tests {
assert!(verify_res.unwrap()); // Verifying that the proof was indeed verified
}

#[ignore = "ignore for ci"]
#[test]
fn test_setup_error() {
// Arrange: Create a new CircomState instance
Expand Down

0 comments on commit e5055de

Please sign in to comment.