-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
47 lines (43 loc) · 1.12 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
defmodule ScosSystemTest.MixProject do
use Mix.Project
def project do
[
app: :scos_system_test,
version: "0.1.1",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
test_paths: test_paths(Mix.env())
]
end
def application do
[
extra_applications: [:logger, :faker, :httpoison]
]
end
defp deps do
[
{:credo, "~> 1.1.5", only: [:dev, :test], runtime: false},
{:brod, "~> 3.14.0"},
{:phoenix_gen_socket_client, "~> 2.1.1"},
{:websocket_client, "~> 1.2"},
{:poison, "~> 2.0"},
{:httpoison, "~> 1.5"},
{:patiently, "~> 0.2"},
{:jason, "~> 1.1"},
{:elixir_uuid, "~> 1.2"},
{:csv, "~> 2.3"},
{:faker, "~> 0.12"},
{:hackney, "~> 1.16"},
{:sweet_xml, "~> 0.6"},
{:configparser_ex, "~> 4.0"},
{:smart_city, "~> 3.0"},
{:smart_city_test, "~> 0.10"},
{:prestige, "~> 1.0"},
{:websockex, "~> 0.4.0"},
{:placebo, "~> 1.2", only: [:dev, :test]}
]
end
defp test_paths(:system), do: ["test/system"]
defp test_paths(_), do: ["test/unit"]
end