From 42c3a782ab7ece857c89096aa018c36db3f3c5a5 Mon Sep 17 00:00:00 2001 From: Ruben Arts Date: Wed, 25 Sep 2024 15:08:15 +0200 Subject: [PATCH] chore: add slow test config (#2137) --- tests/pypi-tests.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/pypi-tests.rs b/tests/pypi-tests.rs index 2c77de8fe..adb4251d8 100644 --- a/tests/pypi-tests.rs +++ b/tests/pypi-tests.rs @@ -7,6 +7,7 @@ use rattler_conda_types::Platform; use url::Url; #[tokio::test] +#[cfg_attr(not(feature = "slow_integration_tests"), ignore)] async fn test_index_strategy() { let pypi_indexes = Path::new(env!("CARGO_MANIFEST_DIR")).join("tests/pypi-indexes"); let pypi_indexes_url = Url::from_directory_path(pypi_indexes).unwrap();