diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index bc5d0d26e7..ef7edc55ac 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -125,11 +125,11 @@ jobs: - name: Run autonomi tests timeout-minutes: 25 - run: cargo test --release --package autonomi --features full,local --lib + run: cargo test --release --package autonomi --features local --lib - name: Run autonomi doc tests timeout-minutes: 25 - run: cargo test --release --package autonomi --features full,local --doc + run: cargo test --release --package autonomi --features local --doc - name: Run bootstrap tests timeout-minutes: 25 diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 5c9553034d..cc9e6f690d 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -246,7 +246,7 @@ jobs: - name: Run autonomi tests timeout-minutes: 25 - run: cargo test --release --package autonomi --lib --features="full,fs" + run: cargo test --release --package autonomi --lib --features="full" - name: Run bootstrap tests timeout-minutes: 25 diff --git a/autonomi/tests/fs.rs b/autonomi/tests/fs.rs index 040af8d725..88198c4cc6 100644 --- a/autonomi/tests/fs.rs +++ b/autonomi/tests/fs.rs @@ -18,7 +18,7 @@ use tokio::time::sleep; use walkdir::WalkDir; // With a local evm network, and local network, run: -// EVM_NETWORK=local cargo test --features="fs,local" --package autonomi --test file +// EVM_NETWORK=local cargo test --features="local" --package autonomi --test fs #[tokio::test] async fn dir_upload_download() -> Result<()> { let _log_appender_guard =