tuvokki

tuvokki

Dependency check fails when in test environment

Hi,

I recently tried to upgrade a small application to ecto2 and sqlite_ecto2. Previously I could just run mix test to run my tests, but now if I do that dependency check fails while running tests:

$ mix test
Unchecked dependencies for environment test:

  • decimal (Hex package)
    the dependency does not match the requirement “~> 1.2”, got “1.1.2”
  • ecto (Hex package)
    the dependency does not match the requirement “~> 2.2”, got “1.1.9”
  • sqlitex (Hex package)
    the dependency does not match the requirement “~> 1.3.2 or ~> 1.4”, got “0.8.0”
    ** (Mix) Can’t continue due to errors on dependencies

There is a difference in the output of mix deps when run in the different environments:

$ MIX_ENV=test mix deps

  • esqlite 0.2.3 (Hex package) (rebar3)
    locked at 0.2.3 (esqlite) 1a8b6087
    ok
  • connection 1.0.4 (Hex package) (mix)
    locked at 1.0.4 (connection) a1cae722
    ok
  • ranch 1.3.2 (Hex package) (rebar3)
    locked at 1.3.2 (ranch) e4965a14
    ok
  • poolboy 1.5.1 (Hex package) (rebar)
    locked at 1.5.1 (poolboy) 6b461639
    ok
  • decimal (Hex package) (mix)
    locked at 1.4.1 (decimal) ad9e501e
    the dependency does not match the requirement “~> 1.2”, got “1.1.2”
  • sbroker 1.0.0 (Hex package) (rebar3)
    locked at 1.0.0 (sbroker) 28ff1b5e
    ok
  • db_connection 1.1.2 (Hex package) (mix)
    locked at 1.1.2 (db_connection) 2865c2a4
    ok
  • ecto (Hex package) (mix)
    locked at 2.2.7 (ecto) 2074106f
    the dependency does not match the requirement “~> 2.2”, got “1.1.9”
  • cowlib 1.0.2 (Hex package) (rebar3)
    locked at 1.0.2 (cowlib) 9d769a1d
    ok
  • cowboy 1.1.2 (Hex package) (rebar3)
    locked at 1.1.2 (cowboy) 61ac29ea
    ok
  • mime 1.2.0 (Hex package) (mix)
    locked at 1.2.0 (mime) 78adaa84
    ok
  • plug 1.4.3 (Hex package) (mix)
    locked at 1.4.3 (plug) 236d77ce
    ok
  • sqlitex (Hex package) (mix)
    locked at 1.3.3 (sqlitex) 3aac5fd7
    the dependency does not match the requirement “~> 1.3.2 or ~> 1.4”, got “0.8.0”
  • sqlite_ecto2 2.2.2 (Hex package) (mix)
    locked at 2.2.2 (sqlite_ecto2) 7a3e5c05
    ok

And in prod or dev:

$ mix deps

  • esqlite 0.2.3 (Hex package) (rebar3)
    locked at 0.2.3 (esqlite) 1a8b6087
    ok
  • connection 1.0.4 (Hex package) (mix)
    locked at 1.0.4 (connection) a1cae722
    ok
  • ranch 1.3.2 (Hex package) (rebar3)
    locked at 1.3.2 (ranch) e4965a14
    ok
  • poolboy 1.5.1 (Hex package) (rebar)
    locked at 1.5.1 (poolboy) 6b461639
    ok
  • decimal 1.4.1 (Hex package) (mix)
    locked at 1.4.1 (decimal) ad9e501e
    ok
  • sbroker 1.0.0 (Hex package) (rebar3)
    locked at 1.0.0 (sbroker) 28ff1b5e
    ok
  • db_connection 1.1.2 (Hex package) (mix)
    locked at 1.1.2 (db_connection) 2865c2a4
    ok
  • ecto 2.2.7 (Hex package) (mix)
    locked at 2.2.7 (ecto) 2074106f
    ok
  • cowlib 1.0.2 (Hex package) (rebar3)
    locked at 1.0.2 (cowlib) 9d769a1d
    ok
  • cowboy 1.1.2 (Hex package) (rebar3)
    locked at 1.1.2 (cowboy) 61ac29ea
    ok
  • mime 1.2.0 (Hex package) (mix)
    locked at 1.2.0 (mime) 78adaa84
    ok
  • plug 1.4.3 (Hex package) (mix)
    locked at 1.4.3 (plug) 236d77ce
    ok
  • sqlitex 1.3.3 (Hex package) (mix)
    locked at 1.3.3 (sqlitex) 3aac5fd7
    ok
  • sqlite_ecto2 2.2.2 (Hex package) (mix)
    locked at 2.2.2 (sqlite_ecto2) 7a3e5c05
    ok

Since I’m quite new to this I don’t understand these differences, they might me explainable but not by me. This is my mix.exs:

defmodule Helloplug.Mixfile do
  use Mix.Project

  def project do
    [
      app: :helloplug,
      version: "0.1.0",
      elixir: "~> 1.5",
      start_permanent: Mix.env == :prod,
      deps: deps()
    ]
  end

  # Run "mix help compile.app" to learn about applications.
  def application do
    [
      extra_applications: [:logger, :sqlite_ecto2, :ecto, :cowboy, :plug],
      mod: {WebsiteRouter, []}
    ]
  end

  # Run "mix help deps" to learn about dependencies.
  defp deps do
    [
      {:cowboy, "~> 1.1"},
      {:plug, "~> 1.4"},
      {:sqlite_ecto2, "~> 2.2"},
      {:ecto, "~> 2.2"}
    ]
  end
end

First Post!

kip

kip

ex_cldr Core Team

Dependencies are only updated when you run mix deps.update -all or deps.unlock dep followed by mix.deps.get

I’d suggest in this config a mix deps.update --all should be ok.

Where Next?

Popular in Questions Top

senggen
Erlang/OTP 25 [erts-13.2.2] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] 15:22:35.803 [error] gen_event {lager_file_backend...
New
jononomo
I am trying to figure out how Mix knows whether the environment is test, dev, or prod -- where is this set? Thanks.
New
Jim
As a follow up to my earlier question: I have the code compiling and running but not getting a successful login from the rest server. ...
New
chensan
I have a User schema with a :from_id field set to type :string: defmodule TweetBot.Repo.Migrations.CreateUsers do use Ecto.Migration ...
New
Fl4m3Ph03n1x
Background Let’s assume I have a typical GenServer that receives messages as requests, does some operation in a DB and returns responses....
New
LegitStack
I’m trying to make a websocket server in Phoenix or raw Elixir. I heard about gun, I think I could use cowboy, but since I’m not that sma...
New
belgoros
I’m not a pro in using Regex and can’t figure out why the following behaviour happens, especially if we take into account the difference ...
New
sabri
Can someone explain the settings of pool_size of Ecto in config file? and what is the recommend size? Thanks
New
Codball
Mix format works fine if run from the cmd. I’ve followed this to facilitate the implementation into VSC which involves downloading an ext...
New
joeerl
Hello again - after a longish gap I’ve decided I really must dig into Elixir and see what’s been happening here - so I have a few questio...
New

Other popular topics Top

yurko
Here are few pieces of (common) Linux knowledge that we use for reasonably small one server apps. We use Ubuntu but this should work for ...
New
William
I would like to know that is there any online source for learning Phoenix Framework for building E-Commerce Store? Any advantage on build...
New
bsollish-terakeet
Credo is smart enough to check for (something like) this: assert length(the_list) == 0 with this response: Checking if an enum is empt...
New
SoCreat
i’m a new one to elixir which editor can i use vs code? or atom? Thanks! :smiley:
New
hariharasudhan94
I would like to know what is the best IDE for elixir development?
New
ovidiubadita
Hey all, I discovered Elixir and I love it. I always wanted to learn a functional programming and I intended to go for Haskell, but afte...
New
beno
I will often find my self writing things similar to: case some_value do nil -> something() "" -> something() _ -> someth...
New
AstonJ
by Lance Halvorsen Elixir and Phoenix are generating tremendous excitement as an unbeatable platform for building modern web application...
460 27162 124
New
aesmail
Hello guys, I have finally made it. I created an admin interface for a framework. It’s been on my todo list for years and with the curre...
New
magnetic
Hey :wave:t3: Elixir community, I’ve been learning Elixir, and working on some side projects. My editor of choice is VSCode, and althoug...
New

We're in Beta

About us Mission Statement