Skip to content

Commit

Permalink
chore: remove usage of serial_test dependency (#2598)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Sep 7, 2023
1 parent 3c731b1 commit ed7ad6e
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 47 deletions.
38 changes: 0 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion crates/acvm_backend_barretenberg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ reqwest = { version = "0.11.16", default-features = false, features = [
] }

[dev-dependencies]
serial_test = "2.0.0"
test-binary = "3.0.1"

[build-dependencies]
Expand Down
1 change: 0 additions & 1 deletion crates/acvm_backend_barretenberg/src/cli/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ impl ContractCommand {
}

#[test]
#[serial_test::serial]
fn contract_command() {
use tempfile::tempdir;

Expand Down
1 change: 0 additions & 1 deletion crates/acvm_backend_barretenberg/src/cli/gates.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ impl GatesCommand {
}

#[test]
#[serial_test::serial]
fn gate_command() {
use tempfile::tempdir;

Expand Down
1 change: 0 additions & 1 deletion crates/acvm_backend_barretenberg/src/cli/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ impl InfoCommand {
}

#[test]
#[serial_test::serial]
fn info_command() {
use acvm::acir::circuit::black_box_functions::BlackBoxFunc;
use acvm::acir::circuit::opcodes::{BlackBoxFuncCall, Opcode};
Expand Down
1 change: 0 additions & 1 deletion crates/acvm_backend_barretenberg/src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ pub(crate) use verify::VerifyCommand;
pub(crate) use write_vk::WriteVkCommand;

#[test]
#[serial_test::serial]
fn no_command_provided_works() {
// This is a simple test to check that the binaries work

Expand Down
1 change: 0 additions & 1 deletion crates/acvm_backend_barretenberg/src/cli/prove.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ impl ProveCommand {
}

#[test]
#[serial_test::serial]
fn prove_command() {
use tempfile::tempdir;

Expand Down
1 change: 0 additions & 1 deletion crates/acvm_backend_barretenberg/src/cli/verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ impl VerifyCommand {
}

#[test]
#[serial_test::serial]
fn verify_command() {
use tempfile::tempdir;

Expand Down
1 change: 0 additions & 1 deletion crates/acvm_backend_barretenberg/src/cli/write_vk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ impl WriteVkCommand {
}

#[test]
#[serial_test::serial]
fn write_vk_command() {
use tempfile::tempdir;

Expand Down
1 change: 0 additions & 1 deletion crates/acvm_backend_barretenberg/src/smart_contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ mod tests {
use crate::get_mock_backend;

#[test]
#[serial_test::serial]
fn test_smart_contract() {
let expression = &(Witness(1) + Witness(2)) - &Expression::from(Witness(3));
let constraint = Opcode::Arithmetic(expression);
Expand Down

0 comments on commit ed7ad6e

Please sign in to comment.