Skip to content

Commit

Permalink
Correctly configure converage actions
Browse files Browse the repository at this point in the history
  • Loading branch information
whitfin committed Aug 30, 2023
1 parent a590181 commit 4a01297
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mix.exs
Expand Up @@ -37,9 +37,9 @@ defmodule Jumper.MixProject do
preferred_cli_env: [
docs: :docs,
bench: :bench,
coveralls: :test,
"coveralls.html": :test,
"coveralls.travis": :test
coveralls: :cover,
"coveralls.html": :cover,
"coveralls.github": :cover
],
aliases: [
bench: "run benchmarks/main.exs"
Expand All @@ -58,7 +58,7 @@ defmodule Jumper.MixProject do
defp deps do
[
# Testing dependencies
{:excoveralls, "~> 0.17", optional: true, only: [:dev, :test]},
{:excoveralls, "~> 0.17", optional: true, only: [:cover]},
# Benchmarking dependencies
{:benchee, "~> 1.1", optional: true, only: [:bench]},
{:benchee_html, "~> 1.0", optional: true, only: [:bench]},
Expand Down

0 comments on commit 4a01297

Please sign in to comment.