Skip to content

Commit

Permalink
Lower CI test logs (#4092)
Browse files Browse the repository at this point in the history
  • Loading branch information
ss-es authored Feb 4, 2025
1 parent 7f10788 commit 6ef49d1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion crates/hotshot/src/tasks/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ pub fn add_network_message_task<
message
}
Err(e) => {
tracing::error!("Failed to receive message: {:?}", e);
tracing::trace!("Failed to receive message: {:?}", e);
continue;
}
};
Expand Down
24 changes: 12 additions & 12 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,51 +21,51 @@ example_gpuvid_leader *ARGS:

test-ci-rest *ARGS:
echo Running unit tests
RUST_LOG=info cargo nextest run -E 'not (test(tests_1) | test(tests_2) | test(tests_3) | test(tests_4) | test(tests_5) | test(tests_6))' --profile ci --lib --bins --tests --benches --workspace --no-fail-fast {{ARGS}}
RUST_LOG=error cargo nextest run -E 'not (test(tests_1) | test(tests_2) | test(tests_3) | test(tests_4) | test(tests_5) | test(tests_6))' --profile ci --lib --bins --tests --benches --workspace --no-fail-fast {{ARGS}}

test-ci-1:
echo Running integration test group 1
RUST_LOG=info cargo nextest run --profile ci tests_1 --lib --bins --tests --benches --workspace --no-fail-fast
RUST_LOG=error cargo nextest run --profile ci tests_1 --lib --bins --tests --benches --workspace --no-fail-fast

test-ci-2:
echo Running integration test group 2
RUST_LOG=info cargo nextest run --profile ci tests_2 --lib --bins --tests --benches --workspace --no-fail-fast
RUST_LOG=error cargo nextest run --profile ci tests_2 --lib --bins --tests --benches --workspace --no-fail-fast

test-ci-3:
echo Running integration test group 3
RUST_LOG=info cargo nextest run --profile ci tests_3 --lib --bins --tests --benches --workspace --no-fail-fast
RUST_LOG=error cargo nextest run --profile ci tests_3 --lib --bins --tests --benches --workspace --no-fail-fast

test-ci-4:
echo Running integration test group 4
RUST_LOG=info cargo nextest run --profile ci tests_4 --lib --bins --tests --benches --workspace --no-fail-fast
RUST_LOG=error cargo nextest run --profile ci tests_4 --lib --bins --tests --benches --workspace --no-fail-fast

test-ci-5:
echo Running integration test group 5
RUST_LOG=info cargo nextest run --profile ci tests_5 --lib --bins --tests --benches --workspace --no-fail-fast
RUST_LOG=error cargo nextest run --profile ci tests_5 --lib --bins --tests --benches --workspace --no-fail-fast

test-ci-6-1:
echo Running integration test group 6
RUST_LOG=info cargo nextest run --profile ci tests_6 --lib --bins --tests --benches --workspace --no-fail-fast --partition hash:1/6
RUST_LOG=error cargo nextest run --profile ci tests_6 --lib --bins --tests --benches --workspace --no-fail-fast --partition hash:1/6

test-ci-6-2:
echo Running integration test group 6
RUST_LOG=info cargo nextest run --profile ci tests_6 --lib --bins --tests --benches --workspace --no-fail-fast --partition hash:2/6
RUST_LOG=error cargo nextest run --profile ci tests_6 --lib --bins --tests --benches --workspace --no-fail-fast --partition hash:2/6

test-ci-6-3:
echo Running integration test group 6
RUST_LOG=info cargo nextest run --profile ci tests_6 --lib --bins --tests --benches --workspace --no-fail-fast --partition hash:3/6
RUST_LOG=error cargo nextest run --profile ci tests_6 --lib --bins --tests --benches --workspace --no-fail-fast --partition hash:3/6

test-ci-6-4:
echo Running integration test group 6
RUST_LOG=info cargo nextest run --profile ci tests_6 --lib --bins --tests --benches --workspace --no-fail-fast --partition hash:4/6
RUST_LOG=error cargo nextest run --profile ci tests_6 --lib --bins --tests --benches --workspace --no-fail-fast --partition hash:4/6

test-ci-6-5:
echo Running integration test group 6
RUST_LOG=info cargo nextest run --profile ci tests_6 --lib --bins --tests --benches --workspace --no-fail-fast --partition hash:5/6
RUST_LOG=error cargo nextest run --profile ci tests_6 --lib --bins --tests --benches --workspace --no-fail-fast --partition hash:5/6

test-ci-6-6:
echo Running integration test group 6
RUST_LOG=info cargo nextest run --profile ci tests_6 --lib --bins --tests --benches --workspace --no-fail-fast --partition hash:6/6
RUST_LOG=error cargo nextest run --profile ci tests_6 --lib --bins --tests --benches --workspace --no-fail-fast --partition hash:6/6

# Usage:
#
Expand Down

0 comments on commit 6ef49d1

Please sign in to comment.