Thomas Gazagnaire
Thomas Gazagnaire
> I think a proper fix would be to explicitly log the name of a test when it starts (and probably when it finishes). Do you have an example where...
Maybe you have asynchronous process running somehow and this got intertwined between test cases? #94 adds a new `alcotest-lwt` package to properly wrap asynchronous process using lwt. But I am...
You will probably be interested by https://github.com/Khady/ocaml-junit/blob/master/alcotest/junit_alcotest.mli
To use it you can try: ``` $ opam pin add junit_alcotest https://github.com/Khady/ocaml-junit.git ``` I haven't tried it but it seems that @Khady is already using alcotest+circleCI with some success.
yes that'd be a good idea -- even better, it would be nice if dune could support passing parameters to test stanza (currently it's not possible).
Maybe you can test that the diff is empty and if not print the difference using patdiff? e.g. ``` expected , got ``` To do this you need to define...
The image is using a custom diff, that's not handled by alcotest. It's hard to come up with a proper diff algorithm which works very well on every structure --...
Adding a custom diff printer for alcotest is definitely a good idea.
There is a missing constraint in the opam file. Try to run `opam pin add mirage-types-lwt.2.8.0` first.
woops, sorry it should be: ``` opam pin add mirage-types-lwt 2.8.0 ```