Suppress warnings for test scaffolding code (allow dead_code)
This commit is contained in:
parent
629df5f039
commit
56fdfab2c4
2 changed files with 9 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
#![allow(dead_code)]
|
||||
#![allow(unused_imports)]
|
||||
#![allow(unused_variables)]
|
||||
|
||||
pub mod bot;
|
||||
pub mod desktop;
|
||||
pub mod fixtures;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
#![allow(dead_code)]
|
||||
#![allow(unused_imports)]
|
||||
#![allow(unused_variables)]
|
||||
|
||||
use anyhow::Result;
|
||||
use std::env;
|
||||
use std::path::PathBuf;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue