I recently updated Relude to build with Melange (which uses Dune). You can see the latest coverage report on Coveralls. Specifically, you can see that the file tree looks like this:

I have two questions about this, which may or may not be related:
- Is it possible to hide the
node_modules and __tests__ within the _build directory from the coverage report? In my bsconfig.json, I already have this, but it doesn't seem to be ignoring the _test.re files:
"ppx-flags": [
[
"bisect_ppx/ppx",
"--exclude-files",
".*_test.re$$"
]
]
- Is it possible to get the Coveralls report to link to the files? It's picking up on the source files that got copied to
_build (which isn't checked in) instead of the ones in src, so the Coveralls file view just says "Source not available."
I recently updated Relude to build with Melange (which uses Dune). You can see the latest coverage report on Coveralls. Specifically, you can see that the file tree looks like this:
I have two questions about this, which may or may not be related:
node_modulesand__tests__within the_builddirectory from the coverage report? In mybsconfig.json, I already have this, but it doesn't seem to be ignoring the_test.refiles:_build(which isn't checked in) instead of the ones insrc, so the Coveralls file view just says "Source not available."