test: Ignore the auths tests on windows

Since the auths tests fail sporadically on the windows CI but we can't
reproduce these failures with a real windows machine we are going to
ignore theses one.
But we still ensure they compile.
This commit is contained in:
Tamo 2021-12-22 12:39:48 +01:00
parent ea0a5271f7
commit d7df4d6b84
No known key found for this signature in database
GPG key ID: 20CD8020AFA88D69
2 changed files with 10 additions and 1 deletions

View file

@ -43,8 +43,8 @@ async fn error_delete_unexisting_index() {
assert_eq!(response["error"], expected_response);
}
#[cfg(not(windows))]
#[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");