Disabled logging in the AuthenticationTestCase and FlaskLoginTestCase test cases, for clearer test output.
This commit is contained in:
parent
8e69733cf6
commit
bc888195ad
@ -18,6 +18,7 @@
|
|||||||
"""The test case for the HTTP digest authentication.
|
"""The test case for the HTTP digest authentication.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
import logging
|
||||||
from secrets import token_urlsafe
|
from secrets import token_urlsafe
|
||||||
from typing import Any, Optional, Dict
|
from typing import Any, Optional, Dict
|
||||||
|
|
||||||
@ -55,6 +56,7 @@ class AuthenticationTestCase(TestCase):
|
|||||||
|
|
||||||
:return: The Flask application.
|
:return: The Flask application.
|
||||||
"""
|
"""
|
||||||
|
logging.getLogger("test_auth").addHandler(logging.NullHandler())
|
||||||
app: Flask = Flask(__name__)
|
app: Flask = Flask(__name__)
|
||||||
app.config.from_mapping({
|
app.config.from_mapping({
|
||||||
"TESTING": True,
|
"TESTING": True,
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
"""The test case for the Flask-Login integration.
|
"""The test case for the Flask-Login integration.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
import logging
|
||||||
from secrets import token_urlsafe
|
from secrets import token_urlsafe
|
||||||
from typing import Optional, Dict
|
from typing import Optional, Dict
|
||||||
|
|
||||||
@ -75,6 +76,7 @@ class FlaskLoginTestCase(TestCase):
|
|||||||
|
|
||||||
:return: The Flask application.
|
:return: The Flask application.
|
||||||
"""
|
"""
|
||||||
|
logging.getLogger("test_flask_login").addHandler(logging.NullHandler())
|
||||||
app: Flask = Flask(__name__)
|
app: Flask = Flask(__name__)
|
||||||
app.config.from_mapping({
|
app.config.from_mapping({
|
||||||
"TESTING": True,
|
"TESTING": True,
|
||||||
|
Loading…
Reference in New Issue
Block a user