diff --git a/meilisearch-http/tests/auth/tenant_token.rs b/meilisearch-http/tests/auth/tenant_token.rs index 3206a6553..fbf9d2b49 100644 --- a/meilisearch-http/tests/auth/tenant_token.rs +++ b/meilisearch-http/tests/auth/tenant_token.rs @@ -203,7 +203,6 @@ macro_rules! compute_forbidden_search { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn search_authorized_simple_token() { let tenant_tokens = vec![ hashmap! { @@ -252,7 +251,6 @@ async fn search_authorized_simple_token() { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn search_authorized_filter_token() { let tenant_tokens = vec![ hashmap! { @@ -306,7 +304,6 @@ async fn search_authorized_filter_token() { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn filter_search_authorized_filter_token() { let tenant_tokens = vec![ hashmap! { @@ -360,7 +357,6 @@ async fn filter_search_authorized_filter_token() { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn error_search_token_forbidden_parent_key() { let tenant_tokens = vec![ hashmap! { @@ -393,7 +389,6 @@ async fn error_search_token_forbidden_parent_key() { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn error_search_forbidden_token() { let tenant_tokens = vec![ // bad index @@ -448,7 +443,6 @@ async fn error_search_forbidden_token() { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn error_access_forbidden_routes() { let mut server = Server::new_auth().await; server.use_api_key("MASTER_KEY"); @@ -483,7 +477,6 @@ async fn error_access_forbidden_routes() { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn error_access_expired_parent_key() { use std::{thread, time}; let mut server = Server::new_auth().await; @@ -523,7 +516,6 @@ async fn error_access_expired_parent_key() { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn error_access_modified_token() { let mut server = Server::new_auth().await; server.use_api_key("MASTER_KEY"); diff --git a/meilisearch-http/tests/dumps/mod.rs b/meilisearch-http/tests/dumps/mod.rs index fa0b929a3..3f783a1e3 100644 --- a/meilisearch-http/tests/dumps/mod.rs +++ b/meilisearch-http/tests/dumps/mod.rs @@ -25,7 +25,6 @@ async fn import_dump_v1() { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn import_dump_v2_movie_raw() { let temp = tempfile::tempdir().unwrap(); @@ -87,7 +86,6 @@ async fn import_dump_v2_movie_raw() { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn import_dump_v2_movie_with_settings() { let temp = tempfile::tempdir().unwrap(); @@ -151,7 +149,6 @@ async fn import_dump_v2_movie_with_settings() { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn import_dump_v2_rubygems_with_settings() { let temp = tempfile::tempdir().unwrap(); @@ -215,7 +212,6 @@ async fn import_dump_v2_rubygems_with_settings() { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn import_dump_v3_movie_raw() { let temp = tempfile::tempdir().unwrap(); @@ -277,7 +273,6 @@ async fn import_dump_v3_movie_raw() { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn import_dump_v3_movie_with_settings() { let temp = tempfile::tempdir().unwrap(); @@ -341,7 +336,6 @@ async fn import_dump_v3_movie_with_settings() { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn import_dump_v3_rubygems_with_settings() { let temp = tempfile::tempdir().unwrap(); @@ -405,7 +399,6 @@ async fn import_dump_v3_rubygems_with_settings() { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn import_dump_v4_movie_raw() { let temp = tempfile::tempdir().unwrap(); @@ -467,7 +460,6 @@ async fn import_dump_v4_movie_raw() { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn import_dump_v4_movie_with_settings() { let temp = tempfile::tempdir().unwrap(); @@ -531,7 +523,6 @@ async fn import_dump_v4_movie_with_settings() { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn import_dump_v4_rubygems_with_settings() { let temp = tempfile::tempdir().unwrap(); @@ -595,7 +586,6 @@ async fn import_dump_v4_rubygems_with_settings() { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn import_dump_v5() { let temp = tempfile::tempdir().unwrap(); diff --git a/meilisearch-http/tests/index/delete_index.rs b/meilisearch-http/tests/index/delete_index.rs index f3cdf6631..b6efc7a68 100644 --- a/meilisearch-http/tests/index/delete_index.rs +++ b/meilisearch-http/tests/index/delete_index.rs @@ -44,7 +44,6 @@ async fn error_delete_unexisting_index() { } #[actix_rt::test] -#[cfg_attr(target_os = "windows", ignore)] async fn loop_delete_add_documents() { let server = Server::new().await; let index = server.index("test");