We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07d9f8b commit db8d526Copy full SHA for db8d526
src/irmin-test/store_watch.ml
@@ -351,8 +351,9 @@ module Make (Log : Logs.LOG) (S : S) = struct
351
run x test
352
353
let tests =
354
- [
355
- ("Callbacks and exceptions", test_watch_exn);
356
- ("Basic operations", test_watches);
357
- ]
+ (* [test_watches] has been disabled for being flaky.
+ TODO: work out why, fix it, and re-enable it.
+ See https://github.com/mirage/irmin/issues/1447. *)
+ let _ = ("Basic operations", test_watches) in
358
+ [ ("Callbacks and exceptions", test_watch_exn) ]
359
end
0 commit comments