From b8d598b900e6e1ac449cfa2aa8e71a7d49d51ffc Mon Sep 17 00:00:00 2001 From: Tom French <15848336+TomAFrench@users.noreply.github.com> Date: Thu, 25 Sep 2025 10:51:08 +0000 Subject: [PATCH] chore: remove unused feature flag --- .github/workflows/test-rust-workspace-arm64.yml | 2 +- .github/workflows/test-rust-workspace.yml | 3 +-- compiler/noirc_frontend/Cargo.toml | 1 - 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-rust-workspace-arm64.yml b/.github/workflows/test-rust-workspace-arm64.yml index a9bb6fc3301..9f6c3e557bd 100644 --- a/.github/workflows/test-rust-workspace-arm64.yml +++ b/.github/workflows/test-rust-workspace-arm64.yml @@ -40,7 +40,7 @@ jobs: tool: nextest@0.9.88 - name: Build and archive tests - run: cargo nextest archive --workspace --features noirc_frontend/nextest --archive-file nextest-archive-arm64.tar.zst + run: cargo nextest archive --workspace --archive-file nextest-archive-arm64.tar.zst env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test-rust-workspace.yml b/.github/workflows/test-rust-workspace.yml index b9dc27f1bd2..f2ce56d835d 100644 --- a/.github/workflows/test-rust-workspace.yml +++ b/.github/workflows/test-rust-workspace.yml @@ -41,7 +41,7 @@ jobs: tool: nextest@0.9.88 - name: Build and archive tests - run: cargo nextest archive --workspace --features noirc_frontend/nextest --archive-file nextest-archive.tar.zst + run: cargo nextest archive --workspace --archive-file nextest-archive.tar.zst env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -96,7 +96,6 @@ jobs: permissions: contents: read - steps: - name: Checkout uses: actions/checkout@v5 diff --git a/compiler/noirc_frontend/Cargo.toml b/compiler/noirc_frontend/Cargo.toml index 7f2222558dd..a38547c9a5a 100644 --- a/compiler/noirc_frontend/Cargo.toml +++ b/compiler/noirc_frontend/Cargo.toml @@ -45,4 +45,3 @@ insta.workspace = true bn254 = [] bls12_381 = [] test_utils = [] -nextest = []