Skip to content

feat(spec/test): Part streaming MBT - ITF-trace parsing #2701

feat(spec/test): Part streaming MBT - ITF-trace parsing

feat(spec/test): Part streaming MBT - ITF-trace parsing #2701

Triggered via pull request January 28, 2025 17:19
Status Failure
Total duration 2m 46s
Artifacts

rust.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

7 errors
Clippy: crates/test/mbt/src/tests/streaming.rs#L2
error: unused import: `rand::rngs::StdRng` --> crates/test/mbt/src/tests/streaming.rs:2:5 | 2 | use rand::rngs::StdRng; | ^^^^^^^^^^^^^^^^^^ | = note: `-D unused-imports` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unused_imports)]`
Clippy: crates/test/mbt/src/tests/streaming.rs#L3
error: unused import: `rand::SeedableRng` --> crates/test/mbt/src/tests/streaming.rs:3:5 | 3 | use rand::SeedableRng; | ^^^^^^^^^^^^^^^^^
Clippy: crates/test/mbt/src/tests/streaming.rs#L25
error: using `print!()` with a format string that ends in a single newline --> crates/test/mbt/src/tests/streaming.rs:25:5 | 25 | print!("{}\n", temp_path.to_string_lossy()); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#print_with_newline = note: `-D clippy::print-with-newline` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::print_with_newline)]` help: use `println!` instead | 25 - print!("{}\n", temp_path.to_string_lossy()); 25 + println!("{}", temp_path.to_string_lossy()); |
Unit Tests
unused import: `rand::rngs::StdRng`
Unit Tests
unused import: `rand::SeedableRng`
Unit Tests
constant `RANDOM_SEED` is never used
Unit Tests
Process completed with exit code 101.