Skip to content

Commit

Permalink
Update testing docs
Browse files Browse the repository at this point in the history
Signed-off-by: innobead <innobead@users.noreply.github.com>
  • Loading branch information
innobead committed Aug 24, 2023
1 parent 94191a5 commit 3bc82b5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions integration/aws.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ <h1 class="title">Module <code>tests.aws</code></h1>
assert False

secret_access_key = os.getenv(&#34;AWS_SECRET_ACCESS_KEY&#34;)
if access_key_id is None:
if secret_access_key is None:
print(&#34;AWS_SECRET_ACCESS_KEY env variable not defined&#34;)
assert False

default_region = os.getenv(&#34;AWS_DEFAULT_REGION&#34;)
if access_key_id is None:
if default_region is None:
print(&#34;AWS_DEFAULT_REGION env variable not defined&#34;)
assert False

Expand Down Expand Up @@ -158,12 +158,12 @@ <h2 class="section-title" id="header-classes">Classes</h2>
assert False

secret_access_key = os.getenv(&#34;AWS_SECRET_ACCESS_KEY&#34;)
if access_key_id is None:
if secret_access_key is None:
print(&#34;AWS_SECRET_ACCESS_KEY env variable not defined&#34;)
assert False

default_region = os.getenv(&#34;AWS_DEFAULT_REGION&#34;)
if access_key_id is None:
if default_region is None:
print(&#34;AWS_DEFAULT_REGION env variable not defined&#34;)
assert False

Expand Down

0 comments on commit 3bc82b5

Please sign in to comment.