Reduce test output

This commit is contained in:
Tim Van Baak 2021-05-31 15:12:33 -07:00
parent caa2e1e8a4
commit 98898b98fc
2 changed files with 4 additions and 1 deletions

View File

@ -14,6 +14,9 @@ SQLAlchemy = "^1.4.12"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[tool.pytest.ini_options]
addopts = "--show-capture=log"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

View File

@ -12,7 +12,7 @@ import amanuensis.backend.user as userq
@pytest.fixture
def db():
"""Provides an initialized database in memory."""
db = DbContext('sqlite:///:memory:', debug=True)
db = DbContext('sqlite:///:memory:', debug=False)
db.create_all()
return db