-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmix.exs
133 lines (123 loc) · 3.59 KB
/
mix.exs
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
defmodule ParameterizedTest.MixProject do
use Mix.Project
@source_url "/~https://github.com/s3cur3/parameterized_test"
def project do
[
app: :parameterized_test,
version: "0.6.0",
elixir: "~> 1.14",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps(),
docs: docs(),
description: "A utility for defining eminently readable parameterized (or example-based) tests in ExUnit",
name: "ParameterizedTest",
package: package(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
check: :test,
"check.fast": :test,
coveralls: :test,
"coveralls.detail": :test,
"coveralls.json": :test,
"coveralls.html": :test,
dialyzer: :dev,
"test.all": :test
],
dialyzer: [
ignore_warnings: ".dialyzer_ignore.exs",
plt_add_apps: [:mix, :ex_unit],
plt_file: {:no_warn, "priv/plts/dialyzer.plt"},
flags: [
:error_handling,
:unknown,
:unmatched_returns,
:error_handling,
:extra_return,
:missing_return
],
# Error out when an ignore rule is no longer useful so we can remove it
list_unused_filters: true
]
]
end
def application do
[]
end
defp docs do
[
extras: ["CHANGELOG.md", "README.md"],
main: "readme",
source_url: @source_url,
formatters: ["html"]
]
end
defp package do
# These are the default files included in the package
[
files: ["lib", "mix.exs", "README.md", "CHANGELOG.md"],
maintainers: ["Tyler Young"],
licenses: ["MIT"],
links: %{"GitHub" => @source_url}
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Specifies your project dependencies.
#
# Type `mix help deps` for examples and options.
defp deps do
List.flatten(
[
# Optional: supports doing parameterization over Wallaby `feature` tests
{:wallaby, ">= 0.0.0", optional: true},
{:nimble_csv, "~> 1.1"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
# Code quality
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.2", only: [:dev, :test], runtime: false},
{:excoveralls, "~> 0.18.0", only: [:dev, :test], runtime: false}
] ++ styler_deps()
)
end
defp styler_deps do
if Version.match?(System.version(), "< 1.15.0") do
[]
else
[{:styler, "~> 1.3", only: [:dev, :test], runtime: false}]
end
end
# Aliases are shortcuts or tasks specific to the current project.
# For example, to install project dependencies and perform other setup tasks, run:
#
# $ mix setup
#
# See the documentation for `Mix` for more info on aliases.
defp aliases do
[
check: [
"clean",
"check.fast",
"test --only integration"
],
"check.fast": [
"deps.unlock --check-unused",
"compile --warnings-as-errors",
"test",
"check.quality"
],
"check.quality": [
"format --check-formatted",
"credo --strict",
"check.circular",
"check.dialyzer"
],
"check.circular": "cmd MIX_ENV=dev mix xref graph --label compile-connected --fail-above 0",
"check.dialyzer": "cmd MIX_ENV=dev mix dialyzer",
setup: ["deps.get"],
"test.all": ["test --include integration --include local_integration"]
]
end
end