forked from elixir-wallaby/wallaby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
119 lines (104 loc) · 3.17 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
defmodule Wallaby.Mixfile do
use Mix.Project
@version "0.24.0"
@drivers ~w(phantom selenium chrome)
@selected_driver System.get_env("WALLABY_DRIVER")
@maintainers [
"Chris Keathley",
"Tobias Pfeiffer",
"Aaron Renner",
"Mitchell Hanberg"
]
def project do
[
app: :wallaby,
version: @version,
elixir: "~> 1.7",
elixirc_paths: elixirc_paths(Mix.env()),
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
package: package(),
description: "Concurrent feature tests for elixir",
deps: deps(),
docs: docs(),
# Custom testing
aliases: ["test.all": ["test", "test.drivers"], "test.drivers": &test_drivers/1],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.html": :test,
"coveralls.json": :test,
"test.all": :test,
"test.drivers": :test
],
test_coverage: [tool: ExCoveralls],
test_paths: test_paths(@selected_driver),
dialyzer: dialyzer()
]
end
def application do
[extra_applications: [:logger], mod: {Wallaby, []}]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
# need the testserver in dev for benchmarks to run
defp elixirc_paths(:dev), do: ["lib", "integration_test/support/test_server.ex"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:jason, "~> 1.1"},
{:httpoison, "~> 0.12 or ~> 1.0"},
{:poolboy, "~> 1.5"},
{:web_driver_client, "~> 0.1.0"},
{:dialyxir, "~> 1.0", only: :dev, runtime: false},
{:benchee, "~> 0.9", only: :dev},
{:benchee_html, "~> 0.3", only: :dev},
{:credo, "~> 0.9", only: [:dev, :test], runtime: false},
{:bypass, "~> 1.0.0", only: :test},
{:excoveralls, "~> 0.7", only: :test},
{:ex_doc, "~> 0.20", only: :dev},
{:inch_ex, "~> 2.0", only: :dev}
]
end
defp package do
[
files: ["lib", "mix.exs", "README.md", "LICENSE.md", "priv"],
exclude_patterns: ["safe_travis.ex"],
maintainers: @maintainers,
licenses: ["MIT"],
links: %{"Github" => "https://github.com/keathley/wallaby"}
]
end
defp docs do
[
extras: ["README.md"],
source_ref: "v#{@version}",
source_url: "https://github.com/elixir-wallaby/wallaby",
main: "readme",
logo: "guides/images/icon.png"
]
end
defp dialyzer do
[
plt_add_apps: [:inets],
ignore_warnings: ".dialyzer_ignore.exs",
list_unused_filters: true
]
end
defp test_paths(driver) when driver in @drivers, do: ["integration_test/#{driver}"]
defp test_paths(_), do: ["test"]
defp test_drivers(args) do
for driver <- @drivers, do: run_integration_test(driver, args)
end
defp run_integration_test(driver, args) do
args = if IO.ANSI.enabled?(), do: ["--color" | args], else: ["--no-color" | args]
IO.puts("==> Running tests for WALLABY_DRIVER=#{driver} mix test")
{_, res} =
System.cmd("mix", ["test" | args],
into: IO.binstream(:stdio, :line),
env: [{"WALLABY_DRIVER", driver}]
)
if res > 0 do
System.at_exit(fn _ -> exit({:shutdown, 1}) end)
end
end
end