Skip to content

Commit

Permalink
test: allow missing_docs in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Sep 19, 2024
1 parent 9867b55 commit 9e8f0f3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/sol-types/tests/compiletest.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(missing_docs)]

#[rustversion::attr(nightly, ignore = "type.rs depends way too much on compiler internals")]
#[rustversion::attr(not(nightly), ignore)]
#[cfg_attr(any(target_os = "windows", miri), ignore)]
Expand Down
2 changes: 2 additions & 0 deletions crates/sol-types/tests/doctests.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(missing_docs)]

mod doctests {
mod contracts;
mod events;
Expand Down
1 change: 1 addition & 0 deletions crates/sol-types/tests/macros/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![allow(clippy::missing_const_for_fn)]
#![allow(missing_docs)]

mod sol;
1 change: 1 addition & 0 deletions crates/syn-solidity/tests/contracts.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#![cfg(feature = "visit")]
#![allow(clippy::missing_const_for_fn)]
#![allow(missing_docs)]

use std::{
fs::{self, DirEntry},
Expand Down

0 comments on commit 9e8f0f3

Please sign in to comment.