Fixes path to testing config file

This commit is contained in:
Aaron Louie 2020-02-28 11:33:08 -05:00
parent dc53939eb1
commit f4a0c32cec
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ auth = HTTPTokenAuth('Bearer')
if "TESTING" in os.environ and os.environ["TESTING"] == "true":
app.config.from_object('config.testing')
app.config.from_pyfile('testing.py')
app.config.from_pyfile('../config/testing.py')
else:
app.config.root_path = app.instance_path
app.config.from_pyfile('config.py', silent=True)