Skip to content

Commit

Permalink
Fix warnings on elixir 1.11 (#92)
Browse files Browse the repository at this point in the history
* Fix warnings on elixir 1.11

* Update elixir version on CI
  • Loading branch information
pedroperrone committed Oct 21, 2020
1 parent 5e2080a commit 42a88e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
otp_release:
- 23.0
elixir:
- 1.10.3
- 1.11.1
before_script:
- export SCRIVENER_ECTO_DB_USER=postgres
- MIX_ENV=test mix db.reset
Expand Down
5 changes: 1 addition & 4 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,10 @@ defmodule Scrivener.Ecto.Mixfile do

def application do
[
applications: applications(Mix.env())
extra_applications: [:logger]
]
end

defp applications(:test), do: [:scrivener, :postgrex, :ecto, :logger, :telemetry]
defp applications(_), do: [:scrivener, :logger]

defp deps do
[
{:scrivener, "~> 2.4"},
Expand Down

0 comments on commit 42a88e3

Please sign in to comment.