Skip to content

Commit

Permalink
testing env var fix
Browse files Browse the repository at this point in the history
  • Loading branch information
konrad0960 committed Sep 25, 2024
1 parent 2156e9b commit 89afb45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/auto_validator/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def wrapped(*args, **kwargs):
env.read_env(root("../../.env"))

ENV = env("ENV")
TESTING = env("TESTING")
TESTING = env("TESTING", default=False)

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = env("SECRET_KEY")
Expand Down

0 comments on commit 89afb45

Please sign in to comment.