104 |
// miri doesn't capture explicit writes to stderr
|
105 |
#[allow(clippy::explicit_write)]
|
106 |
let _ = write!(stderr(), ".");
|
82 |
let (_, module) = module_path.split_once("::").unwrap();
|
83 |
#[allow(clippy::explicit_write)]
|
84 |
writeln!(
|
4 |
fn ci_is_disabled() {
|
5 |
#[allow(clippy::explicit_write)]
|
6 |
writeln!(stderr(), "Warning: feature `ci` is disabled").unwrap();
|
160 |
if dirty() {
|
161 |
#[allow(clippy::explicit_write)]
|
162 |
writeln!(stderr(), "Skipping as repository is dirty").unwrap();
|
4 |
fn ci_nightly_is_disabled() {
|
5 |
#[allow(clippy::explicit_write)]
|
6 |
writeln!(stderr(), "Warning: feature `ci_nightly` is disabled").unwrap();
|
14 |
{
|
15 |
#[allow(clippy::explicit_write)]
|
16 |
writeln!(stderr(), "Skipping as repository is dirty").unwrap();
|
28 |
{
|
29 |
#[allow(clippy::explicit_write)]
|
30 |
writeln!(
|
16 |
{
|
17 |
#[allow(clippy::explicit_write)]
|
18 |
writeln!(stderr(), "Skipping as repository is dirty").unwrap();
|
20 |
#![allow(clippy::explicit_write)]
|