disable dht test due to inconsistencies

This commit is contained in:
Christien Rioux 2024-01-19 13:44:00 -05:00
parent b9aa268f71
commit 7848c14c2b

View File

@ -30,8 +30,8 @@ pub async fn run_all_tests() {
veilid_api::tests::test_serialize_json::test_all().await;
info!("TEST: routing_table::test_serialize_routing_table");
routing_table::tests::test_serialize_routing_table::test_all().await;
info!("TEST: test_dht");
test_dht::test_all().await;
// info!("TEST: test_dht");
// test_dht::test_all().await;
info!("Finished unit tests");
}
@ -131,6 +131,6 @@ cfg_if! {
run_test!(routing_table, test_serialize_routing_table);
run_test!(test_dht);
// run_test!(test_dht);
}
}