forked from elixir-wallaby/wallaby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
103 lines (90 loc) · 2.92 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
defmodule Wallaby.Mixfile do
use Mix.Project
@version "0.19.1"
@drivers ~w(phantom selenium chrome)
@selected_driver System.get_env("WALLABY_DRIVER")
@maintainers [
"Chris Keathley",
"Tobias Pfeiffer",
"Aaron Renner",
]
def project do
[app: :wallaby,
version: @version,
elixir: "~> 1.3",
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.post": :test,
"coveralls.html": :test,
"coveralls.travis": :test,
"test.all": :test,
"test.drivers": :test],
test_coverage: [tool: ExCoveralls],
test_paths: test_paths(@selected_driver),
dialyzer: [plt_add_apps: [:inets]]]
end
def application do
[applications: [:logger, :httpoison, :poolboy, :poison], 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
[
{:httpoison, "~> 0.12"},
{:poison, ">= 1.4.0"},
{:poolboy, "~> 1.5"},
{:dialyxir, "~> 0.5", only: [:dev], runtime: false},
{:earmark, "~> 1.2", only: :dev},
{:ex_doc, "~> 0.16", only: :dev},
{:benchee, "~> 0.9", only: :dev},
{:benchee_html, "~> 0.3", only: :dev},
{:bypass, "~> 0.7", only: :test},
{:inch_ex, "~> 0.5", only: [:docs]},
{:excoveralls, "~> 0.7", only: :test},
]
end
defp package do
[
files: ["lib", "mix.exs", "README.md", "LICENSE.md", "priv"],
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/keathley/wallaby",
main: "readme",
]
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