upstream: github.com/mirage/ca-certs
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(lint): resolve E005, E400, E405, E600, E605, E610 across multiple packages

Extract helpers in irmin/lib/git_interop.ml (E005), add module and value
docs (E400/E405), flatten test suites to single tuples (E600), add missing
test files and .mli exports (E605), fix Fpath type in e610.ml.

+6 -1
+2
lib/ca_certs.mli
··· 1 + (** OS trust store detection for TLS certificate validation. *) 2 + 1 3 val authenticator : 2 4 ?crls:X509.CRL.t list -> 3 5 ?allowed_hashes:Digestif.hash' list ->
+1
test/test_ca_certs.ml
··· 1 + let suite = ("ca_certs", [])
+2
test/test_ca_certs.mli
··· 1 + val suite : string * unit Alcotest.test_case list 2 + (** Test suite. *)
+1 -1
test/tests.ml
··· 1006 1006 match ta () with 1007 1007 | Ok tas -> 1008 1008 Alcotest.run "verification tests" 1009 - [ ("X509 certificate validation", tests tas) ] 1009 + [ ("X509 certificate validation", tests tas); Test_ca_certs.suite ] 1010 1010 | Error (`Msg msg) -> 1011 1011 Logs.err (fun m -> m "error %s in ta()" msg); 1012 1012 exit 1