- Silent failure in
augur/application/cli/db.py:
def create_schema():
call(["alembic", "upgrade", "head"]) # uses call(), not check_call()
subprocess.call() returns the exit code but doesn't raise on failure - so the script happily continues even when Alembic fails.
Originally posted by @shlokgilda in #3451
Originally posted by @shlokgilda in #3451