Skip to content

Commit

Permalink
feat: remove feat flags from ci
Browse files Browse the repository at this point in the history
  • Loading branch information
grumbach committed Jan 3, 2025
1 parent f1da82e commit 2fff515
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion autonomi/tests/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit 2fff515

Please sign in to comment.