Skip to content

Commit

Permalink
remove env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
giancarloromeo committed Oct 31, 2024
1 parent af87df5 commit d3d9b71
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,6 @@ def mock_env_devel_environment(
return mock_env_devel_environment | setenvs_from_dict(
monkeypatch, {
"RESOURCE_MANAGER_RESOURCE_TTL_S": "3",
"WEBSERVER_EMAIL": json.dumps({"SMTP_HOST": "smtp.fake.com", "SMTP_PORT": 25}),
"WEBSERVER_LOGIN": json.dumps({"LOGIN_REGISTRATION_INVITATION_REQUIRED": "True"}),
"WEBSERVER_PAYMENTS": json.dumps({"PAYMENTS_USERNAME": "somebody", "PAYMENTS_PASSWORD": faker.password(length=10)}),
"WEBSERVER_SCICRUNCH": "null",
"WEBSERVER_TRACING": "null"
}
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ def app_environment(
"WEBSERVER_DB_LISTENER": "0",
"WEBSERVER_DEV_FEATURES_ENABLED": "1",
"WEBSERVER_GARBAGE_COLLECTOR": "null",
"WEBSERVER_EMAIL": json.dumps({"SMTP_HOST": "smtp.fake.com", "SMTP_PORT": 25}),
"WEBSERVER_LOGIN": json.dumps({"LOGIN_REGISTRATION_INVITATION_REQUIRED": "True"}),
"WEBSERVER_PAYMENTS": json.dumps({"PAYMENTS_USERNAME": "somebody", "PAYMENTS_PASSWORD": faker.password(length=10)}),
"WEBSERVER_SCICRUNCH": "null",
"PAYMENTS_FAKE_GATEWAY_URL": "https://some-fake-gateway.com",
},
)
Expand Down

0 comments on commit d3d9b71

Please sign in to comment.