Skip to content

Commit

Permalink
chore: allow missing docs on tests
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Dec 29, 2024
1 parent b87174b commit 8d1cd2e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions actix-codec/tests/test_framed_sink.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(missing_docs)]

use std::{
collections::VecDeque,
io::{self, Write},
Expand Down
2 changes: 2 additions & 0 deletions actix-server/tests/testing_server.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(missing_docs)]

use std::net;

use actix_rt::net::TcpStream;
Expand Down
1 change: 1 addition & 0 deletions actix-tls/tests/test_connect.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![cfg(feature = "connect")]

Check failure on line 1 in actix-tls/tests/test_connect.rs

View workflow job for this annotation

GitHub Actions / Linux / nightly

missing documentation for the crate

Check failure on line 1 in actix-tls/tests/test_connect.rs

View workflow job for this annotation

GitHub Actions / macOS / nightly

missing documentation for the crate

Check failure on line 1 in actix-tls/tests/test_connect.rs

View workflow job for this annotation

GitHub Actions / macOS / stable

missing documentation for the crate
#![allow(missing_docs)]

use std::{
io,
Expand Down
1 change: 1 addition & 0 deletions actix-tls/tests/test_resolvers.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![cfg(feature = "connect")]

Check failure on line 1 in actix-tls/tests/test_resolvers.rs

View workflow job for this annotation

GitHub Actions / Linux / nightly

missing documentation for the crate

Check failure on line 1 in actix-tls/tests/test_resolvers.rs

View workflow job for this annotation

GitHub Actions / macOS / nightly

missing documentation for the crate

Check failure on line 1 in actix-tls/tests/test_resolvers.rs

View workflow job for this annotation

GitHub Actions / macOS / stable

missing documentation for the crate
#![allow(missing_docs)]

use std::{
io,
Expand Down

0 comments on commit 8d1cd2e

Please sign in to comment.