I have some tests in code and corresponding runtest.
The problem is that those tests are blocking and I would like to know which test is blocking.
Running a “dune runtest” we get this useless stuff:
Done : 525 / 540
If I do “dune --verbose runtest” then I got some information like the last blocking operation:
Running[236]: (cd _build/default/src/legilogic_ethereum && .legilogic_ethereum.inline-tests/run.exe inline-test-runner legilogic_ethereum -source-tree-root …/… -diff-cmd -)
and it is impossible to retrieve information about the specific test that is creating the blocking.
Any idea on how to locate the blocking test?
Mathieu