-
-
Notifications
You must be signed in to change notification settings - Fork 409
Expand file tree
/
Copy pathmix.exs
More file actions
33 lines (30 loc) · 757 Bytes
/
mix.exs
File metadata and controls
33 lines (30 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
defmodule ExercismTestRunner.Mixfile do
use Mix.Project
def project do
[
app: :tests,
version: "0.0.1",
elixir: "~> 1.3",
deps: deps(),
test_paths: ["exercises"],
consolidate_protocols: false,
dialyzer: [
paths: ["_build"],
plt_core_path: "priv/plts",
plt_file: {:no_warn, "priv/plts/eventstore.plt"},
ignore_warnings: ".dialyzer_ignore.exs",
flags: [:no_opaque]
]
]
end
def application do
[extra_applications: [:logger, :dialyzer]]
end
defp deps do
[
{:dialyxir, "~> 1.4.7", runtime: false},
{:markdown_code_block_formatter, "~> 0.1.0", runtime: false},
{:doctest_formatter, "~> 0.4.0", runtime: false}
]
end
end