Skip to content

Commit

Permalink
Ok... Exclusing test cases please run
Browse files Browse the repository at this point in the history
  • Loading branch information
GunnarMorrigan committed May 16, 2023
1 parent 8511dcd commit ce07f69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ jobs:
test:
name: Test
runs-on: ubuntu-22.04
container: ubuntu
steps:
- uses: actions/checkout@v3
- run: cargo fetch
Expand All @@ -51,7 +50,6 @@ jobs:
coverage:
name: Coverage
runs-on: ubuntu-latest
container: ubuntu
permissions:
issues: write

Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ mod lib_test {
assert_eq!(2, pingresp.ping_resp_received);
}

#[cfg(feature = "tokio")]
#[cfg(all(feature = "tokio", target_family = "windows"))]
#[tokio::test]
async fn test_close_write_tcp_stream_tokio() {
use crate::error::ConnectionError;
Expand Down Expand Up @@ -823,7 +823,7 @@ mod lib_test {
});
}

#[cfg(feature = "smol")]
#[cfg(all(feature = "smol", target_family = "windows"))]
#[test]
fn test_close_write_tcp_stream_smol() {
use crate::error::ConnectionError;
Expand Down

0 comments on commit ce07f69

Please sign in to comment.