From d3097bbf6846c2603421a3382db50363afd0d3b6 Mon Sep 17 00:00:00 2001 From: lovasoa Date: Sun, 1 Oct 2023 02:14:18 +0200 Subject: [PATCH] disable test on async-std --- tests/postgres/postgres.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/postgres/postgres.rs b/tests/postgres/postgres.rs index c06c774828..75413ffbb3 100644 --- a/tests/postgres/postgres.rs +++ b/tests/postgres/postgres.rs @@ -1,5 +1,4 @@ use futures::{StreamExt, TryStreamExt}; -use sqlx_core::postgres::PgNotification; use sqlx_oldapi::postgres::types::Oid; use sqlx_oldapi::postgres::{ PgAdvisoryLock, PgConnectOptions, PgConnection, PgDatabaseError, PgErrorPosition, PgListener, @@ -951,6 +950,7 @@ from (values (null)) vals(val) Ok(()) } +#[cfg(feature = "_rt-tokio")] // TODO: fix stack overflow on async-std #[sqlx_macros::test] async fn test_listener_cleanup() -> anyhow::Result<()> { #[cfg(feature = "_rt-tokio")]