Don't load config/custom.exs in test env

new-login
Marcin Kulik 7 years ago
parent a11eac1a14
commit b2c63553df

@ -79,6 +79,3 @@ config :exq_ui,
# Import environment specific config. This must remain at the bottom
# of this file so it overrides the configuration defined above.
import_config "#{Mix.env}.exs"
# Import custom config.
import_config "custom*.exs"

@ -43,3 +43,6 @@ config :asciinema, Asciinema.Repo,
database: "asciinema_development",
hostname: "localhost",
pool_size: 10
# Import custom config.
import_config "custom*.exs"

@ -63,3 +63,6 @@ config :asciinema, Asciinema.Repo,
url: System.get_env("DATABASE_URL"),
pool_size: String.to_integer(System.get_env("POOL_SIZE") || "20"),
ssl: false
# Import custom config.
import_config "custom*.exs"

Loading…
Cancel
Save