Skip to content

Commit

Permalink
remove redundant config in test.exs #67
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonic committed Jun 14, 2023
1 parent 5bcafb0 commit 187e33a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
2 changes: 0 additions & 2 deletions config/config.exs
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@ config :phoenix, :json_library, Jason

config :ex_aws,
access_key_id: System.get_env("AWS_ACCESS_KEY_ID")
|| System.get_env("CI_AWS_ACCESS_KEY_ID"),
secret_access_key: System.get_env("AWS_SECRET_ACCESS_KEY")
|| System.get_env("CI_AWS_SECRET_ACCESS_KEY"),
region: System.get_env("AWS_REGION"),
request_config_override: %{}

Expand Down
8 changes: 0 additions & 8 deletions config/test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,3 @@ config :logger, level: :warning

# Initialize plugs at runtime for faster test compilation
config :phoenix, :plug_init_mode, :runtime

config :ex_aws,
access_key_id: System.get_env("AWS_ACCESS_KEY_ID")
|| System.get_env("CI_AWS_ACCESS_KEY_ID"),
secret_access_key: System.get_env("AWS_SECRET_ACCESS_KEY")
|| System.get_env("CI_AWS_SECRET_ACCESS_KEY"),
region: System.get_env("AWS_REGION"),
request_config_override: %{}

0 comments on commit 187e33a

Please sign in to comment.