Skip to content

Commit 56311e6

Browse files
authoredMay 16, 2022
changed name of API key (#54)
1 parent 5a1e7e4 commit 56311e6

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed
 

‎.github/workflows/run_tests_job.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
- name: Check Code Coverage & Upload to Coveralls.io
2727
run: MIX_ENV=test mix coveralls.github --max-cases 1
2828
env:
29-
API_KEY: ${{ secrets.API_KEY }}
29+
LOB_API_TEST_KEY: ${{ secrets.LOB_API_TEST_KEY }}
3030
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3131
- name: Run Static Code Analysis for Elixir
3232
run: mix credo
3333
- name: Run Static Code Analysis for Erlang
3434
run: mix dialyzer --halt-exit-status
3535
- name: Run Elixir Tests
3636
env:
37-
API_KEY: ${{ secrets.API_KEY }}
37+
LOB_API_TEST_KEY: ${{ secrets.LOB_API_TEST_KEY }}
3838
run: mix deps.get && mix test

‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This library implements the Lob API. Please read through the official [API Docum
3131
The library requires a valid Lob API key to work properly. To acquire an API key, first create an account at [Lob.com](https://dashboard.lob.com/#/register). Once you have created an account, you can access your API Keys from the [Settings Panel](https://dashboard.lob.com/#/settings).
3232

3333
### API Key Configuration
34-
The library will by default refer to the `:api_key` config when making authenticated requests. If that is not present, it will look for the `API_KEY` environment variable.
34+
The library will by default refer to the `:api_key` config when making authenticated requests. If that is not present, it will look for the `LOB_API_TEST_KEY` environment variable.
3535

3636
```elixir
3737
# Configuring an API key with configs
@@ -81,11 +81,11 @@ Tests are written using [ExUnit](https://hexdocs.pm/ex_unit/ExUnit.html), Elixir
8181

8282
Here's how you can run the tests:
8383

84-
API_KEY=YOUR_TEST_API_KEY mix test
84+
LOB_API_TEST_KEY=YOUR_TEST_API_KEY mix test
8585

8686
To run tests with a coverage report:
8787

88-
API_KEY=YOUR_TEST_API_KEY mix coveralls.html
88+
LOB_API_TEST_KEY=YOUR_TEST_API_KEY mix coveralls.html
8989

9090
Then view the report at `cover/excoveralls.html`.
9191

‎config/test.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Config
22

33
config :lob_elixir,
4-
api_key: System.get_env("API_KEY")
4+
api_key: System.get_env("LOB_API_TEST_KEY")
55

66
# config :pre_commit,
77
# commands: ["test", "credo", "dialyzer", "coveralls"]

‎lib/lob/client.ex

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ defmodule Lob.Client do
1919

2020
defexception message: """
2121
The api_key setting is required to make requests to Lob.
22-
Please configure :api_key in config.exs or set the API_KEY
22+
Please configure :api_key in config.exs or set the LOB_API_TEST_KEY
2323
environment variable.
2424
25-
config :lob_elixir, api_key: API_KEY
25+
config :lob_elixir, api_key: LOB_API_TEST_KEY
2626
"""
2727
end
2828

@@ -31,7 +31,7 @@ defmodule Lob.Client do
3131

3232
@spec api_key(atom) :: String.t()
3333
def api_key(env_key \\ :api_key) do
34-
case Confex.get_env(:lob_elixir, env_key, System.get_env("API_KEY")) || :not_found do
34+
case Confex.get_env(:lob_elixir, env_key, System.get_env("LOB_API_TEST_KEY")) || :not_found do
3535
:not_found -> raise MissingAPIKeyError
3636
value -> value
3737
end

‎test/lob/client_test.exs

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ defmodule Lob.ClientTest do
1313
describe "api_key/1" do
1414
test "raises MissingAPIKeyError if no API key is found" do
1515
assert_raise(MissingAPIKeyError, fn ->
16-
api_key = System.get_env("API_KEY")
17-
System.delete_env("API_KEY")
16+
api_key = System.get_env("LOB_API_TEST_KEY")
17+
System.delete_env("LOB_API_TEST_KEY")
1818
Client.api_key(nil)
19-
System.put_env("API_KEY", api_key)
19+
System.put_env("LOB_API_TEST_KEY", api_key)
2020
end)
2121
end
2222
end

0 commit comments

Comments
 (0)
Please sign in to comment.