Skip to content

Commit

Permalink
Quieted compile warnings in test
Browse files Browse the repository at this point in the history
  • Loading branch information
scohen committed Jul 19, 2023
1 parent 65d7432 commit b40f388
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/remote_control/test/fixtures/compilation_errors/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ defmodule CompilationErrors.MixProject do
use Mix.Project

def project do
Code.put_compiler_option(:ignore_module_conflict, true)

[
app: :compilation_errors,
version: "0.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ defmodule CompilationWarnings.MixProject do
use Mix.Project

def project do
Code.put_compiler_option(:ignore_module_conflict, true)

[
app: :compilation_warnings,
version: "0.1.0",
Expand Down
2 changes: 2 additions & 0 deletions apps/remote_control/test/fixtures/navigations/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ defmodule Navigations.MixProject do
use Mix.Project

def project do
Code.put_compiler_option(:ignore_module_conflict, true)

[
app: :navigations,
version: "0.1.0",
Expand Down
2 changes: 2 additions & 0 deletions apps/remote_control/test/fixtures/parse_errors/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ defmodule ParseErrors.MixProject do
use Mix.Project

def project do
Code.put_compiler_option(:ignore_module_conflict, true)

[
app: :parse_errors,
version: "0.1.0",
Expand Down
2 changes: 2 additions & 0 deletions apps/remote_control/test/fixtures/project/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ defmodule Project.MixProject do
use Mix.Project

def project do
Code.put_compiler_option(:ignore_module_conflict, true)

[
app: :project,
version: "0.1.0",
Expand Down
2 changes: 2 additions & 0 deletions apps/remote_control/test/fixtures/project_metadata/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ defmodule ProjectMetadata.MixProject do
use Mix.Project

def project do
Code.put_compiler_option(:ignore_module_conflict, true)

[
app: :project_metadata,
version: "0.1.0",
Expand Down
2 changes: 2 additions & 0 deletions apps/remote_control/test/fixtures/umbrella/apps/first/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ defmodule Umbrella.First.MixProject do
use Mix.Project

def project do
Code.put_compiler_option(:ignore_module_conflict, true)

[
app: :first,
version: "0.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ defmodule Umbrella.Second.MixProject do
use Mix.Project

def project do
Code.put_compiler_option(:ignore_module_conflict, true)

[
app: :second,
version: "0.1.0",
Expand Down
2 changes: 2 additions & 0 deletions apps/remote_control/test/fixtures/umbrella/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ defmodule Umbrella.MixProject do
use Mix.Project

def project do
Code.put_compiler_option(:ignore_module_conflict, true)

[
apps_path: "apps",
version: "0.1.0",
Expand Down

0 comments on commit b40f388

Please sign in to comment.