From 4fbde29c6076aaa9c8afa4f88130da784e0f5624 Mon Sep 17 00:00:00 2001 From: dante <45801863+alexander-camuto@users.noreply.github.com> Date: Tue, 26 Sep 2023 17:38:04 +0100 Subject: [PATCH] refactor: ignore non-evm fuzz tests (#504) --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 3906be151..bb7bdf680 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -337,8 +337,8 @@ jobs: run: cargo install --git https://github.com/foundry-rs/foundry --rev 95a93cd397f25f3f8d49d2851eb52bc2d52dd983 --profile local --locked anvil --force - name: fuzz tests (EVM) run: cargo nextest run --release --verbose tests_evm::kzg_evm_fuzz_ --test-threads 2 - - name: fuzz tests - run: cargo nextest run --release --verbose tests::kzg_fuzz_ --test-threads 6 + # - name: fuzz tests + # run: cargo nextest run --release --verbose tests::kzg_fuzz_ --test-threads 6 prove-and-verify-mock-aggr-tests: runs-on: ubuntu-latest-32-cores