Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Jul 28, 2023
1 parent a3b7975 commit 33d4908
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -465,8 +465,8 @@ jobs:
- name: Tests run with all features (including parking_lot)
run: |
set -euxo pipefail
cargo nextest run -p tokio --all-features
cargo test --doc -p tokio --all-features
cargo nextest run -p tokio --all-features --no-fail-fast
# cargo test --doc -p tokio --all-features
env:
RUST_TEST_THREADS: 1
RUSTFLAGS: --cfg tokio_unstable -Dwarnings --cfg tokio_no_tuning_tests ${{ matrix.rustflags }}
Expand Down
1 change: 1 addition & 0 deletions tokio/tests/tcp_connect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ async fn connect_addr_ip_str_slice() {
join!(server, client);
}

#[cfg_attr(target_os = "android", ignore)]
#[tokio::test]
async fn connect_addr_host_string() {
let srv = assert_ok!(TcpListener::bind("127.0.0.1:0").await);
Expand Down

0 comments on commit 33d4908

Please sign in to comment.