Newbee to Elixir Phonenix, followed https://github.com/mirego/elixir-boilerplate page to create first Elixir project, however while running make dependencies step, get this error. Tried searching for answer but cant able to find any. Someone please help me here
warning: variable "test" does not exist and is being expanded to "test()", please use parentheses to remove the ambiguity or change the variable name
mix.exs:1
** (CompileError) mix.exs:1: undefined function test/0
(stdlib 3.17) lists.erl:1358: :lists.mapfoldl/3
(stdlib 3.17) lists.erl:1358: :lists.mapfoldl/3
(elixir 1.12.2) expanding macro: Kernel.defmodule/2
make: *** [Makefile:82: dependencies] Error 1
root@Raghul:/home/raghul/git/test/elixir-boilerplate#
first portion of the mix.exs file given below
defmodule test.Mixfile do
use Mix.Project
def project do
[
app: :test,
version: "0.0.1",
erlang: "~> 25.0",
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env()),
test_paths: ["test"],
test_pattern: "**/*_test.exs",
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test],
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps(),
dialyzer: dialyzer(),
releases: releases()
]
end