Found it. The discrepancy lies in the fact that Mix.install/1
starts the application for each dependency by default.
Solution is to just add Application.ensure_started(:telemetry)
at the beginning of the Mix task.
Found it. The discrepancy lies in the fact that Mix.install/1
starts the application for each dependency by default.
Solution is to just add Application.ensure_started(:telemetry)
at the beginning of the Mix task.