-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Only filter non Hex overrides from requests
Closes #1029.
- Loading branch information
Showing
6 changed files
with
84 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
defmodule EctoOverride.Fixture.MixProject do | ||
use Mix.Project | ||
|
||
def project do | ||
[app: :ecto, version: "0.2.1", deps: deps()] | ||
end | ||
|
||
defp deps do | ||
[{:postgrex, "0.2.0", override: true}] | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
defmodule UmbrellaOverride.MyApp1.Fixture.MixProject do | ||
use Mix.Project | ||
|
||
def project do | ||
[ | ||
app: :my_app1, | ||
version: "0.1.0", | ||
build_path: "../../_build", | ||
config_path: "../../config/config.exs", | ||
deps_path: "../../deps", | ||
lockfile: "../../mix.lock", | ||
deps: deps() | ||
] | ||
end | ||
|
||
defp deps do | ||
[{:ecto_override, path: HexTest.Case.fixture_path("ecto_override")}] | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
defmodule UmbrellaOverride.Fixture.MixProject do | ||
use Mix.Project | ||
|
||
def project do | ||
[ | ||
apps_path: "apps", | ||
version: "0.1.0", | ||
deps: deps() | ||
] | ||
end | ||
|
||
# Dependencies listed here are available only for this | ||
# project and cannot be accessed from applications inside | ||
# the apps folder. | ||
# | ||
# Run "mix help deps" for examples and options. | ||
defp deps do | ||
[] | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters