feat(spec/test): Part streaming MBT - ITF-trace parsing #2701
rust.yml
on: pull_request
Detect changes
2s
Unit Tests
1m 19s
Integration Tests
2m 22s
no_std compatibility
10s
Clippy
33s
Formatting
13s
MSRV
35s
Standalone
1m 1s
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.
|