From e5055de441d7e3a0a06b218a5396155e3e52e217 Mon Sep 17 00:00:00 2001 From: oskarth Date: Mon, 11 Dec 2023 13:03:28 +0800 Subject: [PATCH] chore: Ignore setup tests for CI --- mopro-core/src/middleware/circom/mod.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mopro-core/src/middleware/circom/mod.rs b/mopro-core/src/middleware/circom/mod.rs index 0cf497fc..2d6abba9 100644 --- a/mopro-core/src/middleware/circom/mod.rs +++ b/mopro-core/src/middleware/circom/mod.rs @@ -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"; @@ -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 = @@ -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