feat: add warm-up option to the load testing framework (#23) #739
scheduled.yml
on: push
ubuntu / nightly
1m 9s
ubuntu / beta / updated
59s
Annotations
6 warnings
|
[clippy] src/stats/window.rs#L82:
src/stats/window.rs#L82
warning: manual implementation of `.is_multiple_of()`
--> src/stats/window.rs:82:12
|
82 | if self.counter % 10 == 0 {
| ^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `self.counter.is_multiple_of(10)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#manual_is_multiple_of
= note: `#[warn(clippy::manual_is_multiple_of)]` on by default
|
|
[clippy] src/stats/window.rs#L85:
src/stats/window.rs#L85
warning: manual implementation of `.is_multiple_of()`
--> src/stats/window.rs:85:12
|
85 | if self.counter % 60 == 0 {
| ^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `self.counter.is_multiple_of(60)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#manual_is_multiple_of
|
|
[clippy] src/stats/window.rs#L88:
src/stats/window.rs#L88
warning: manual implementation of `.is_multiple_of()`
--> src/stats/window.rs:88:12
|
88 | if self.counter % 600 == 0 {
| ^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `self.counter.is_multiple_of(600)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#manual_is_multiple_of
|
|
[clippy] src/stats/window.rs#L82:
src/stats/window.rs#L82
warning: manual implementation of `.is_multiple_of()`
--> src/stats/window.rs:82:12
|
82 | if self.counter % 10 == 0 {
| ^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `self.counter.is_multiple_of(10)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#manual_is_multiple_of
= note: `#[warn(clippy::manual_is_multiple_of)]` on by default
|
|
[clippy] src/stats/window.rs#L85:
src/stats/window.rs#L85
warning: manual implementation of `.is_multiple_of()`
--> src/stats/window.rs:85:12
|
85 | if self.counter % 60 == 0 {
| ^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `self.counter.is_multiple_of(60)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#manual_is_multiple_of
|
|
[clippy] src/stats/window.rs#L88:
src/stats/window.rs#L88
warning: manual implementation of `.is_multiple_of()`
--> src/stats/window.rs:88:12
|
88 | if self.counter % 600 == 0 {
| ^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `self.counter.is_multiple_of(600)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#manual_is_multiple_of
|