A large number of small tooling and README updates.

This commit is contained in:
Ben Rog-Wilhelm 2022-11-10 16:43:26 -06:00 committed by GitHub
parent adc24ec91e
commit 937d36de31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 76 additions and 81 deletions

View file

@ -5,8 +5,11 @@ from common import _operation
def run_test(args):
result = _operation("tests", [
"FLASK_APP=files/cli:app python3 -m flask db upgrade",
"python3 -m pytest -s",
[
"python3",
"-m", "pytest",
"-s",
]
])
sys.exit(result.returncode)