Closed ephe-meral closed 8 years ago
I assume this is a problem with Erlang's cover
application (see all the cover.erl
lines in the stack traces). My library use cover
for the dirty work of generating coverage information and does only the beautifying of the output.
The source code line lib/coverex/task.ex:24: Coverex.Task.start/2
is
:cover.compile_beam_directory(compile_path |> to_char_list)
before that nothing special happens.
Could you please comment out the test_coverage:
configuration and run mix test --cover
? In that case mix runs directly :cover
to generate the coverage output. If this fails, we know that you should send a bug report to the Erlang OTP team. Otherwise I will further dig into your problem.
@alfert Thanks for the hint - you were right, the issue is actually with cover
:)
Please upgrade to Elixir 1.3.4, this should solve the issue.
@alfert :+1: Just tested it with 1.3.4, works flawlessly! :)
I'm experiencing issues with coverex in a project using the official elixir docker image.
OS is Debian Jessie Elixir version is 1.3.1 Erlang version is 19
The tests are run by the CircleCI bot within the Docker environment, but before they are executed, they crash with the following error report(s):
The last paragraph gets printed multiple times for all the different modules that are being tested.