diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 9584816b774..89951e066c4 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -94,7 +94,7 @@ jobs: - name: tests run: | - cargo nextest run --workspace ${{ env.FEATURES }} --lib --bins --tests ${{ inputs.flaky && '--run-ignored all' }} + cargo nextest run --workspace ${{ env.FEATURES }} --lib --bins --tests ${{ inputs.flaky && '--run-ignored all' || '' }} env: RUST_LOG: "TRACE" @@ -172,6 +172,6 @@ jobs: - name: tests run: | - cargo nextest run --workspace ${{ env.FEATURES }} --lib --bins --tests --target ${{ matrix.target }} ${{ inputs.flaky && '--run-ignored all' }} + cargo nextest run --workspace ${{ env.FEATURES }} --lib --bins --tests --target ${{ matrix.target }} ${{ inputs.flaky && '--run-ignored all' || '' }} env: RUST_LOG: "TRACE" diff --git a/iroh/tests/cli.rs b/iroh/tests/cli.rs index 5f5c806a004..7a4e3cb85e1 100644 --- a/iroh/tests/cli.rs +++ b/iroh/tests/cli.rs @@ -617,6 +617,7 @@ fn cli_provide_addresses() -> Result<()> { } #[test] +#[ignore = "flaky"] fn cli_rpc_lock_restart() -> Result<()> { let dir = testdir!(); let iroh_data_dir = dir.join("data-dir");