Added fixtures for course and xblock creation Added bok-choy Studio tests Added bok-choy tests for ora self- and ai- assessment Refactored auto-auth; added staff and course-enrollment options Removed extra javascript properties from page objects
11 lines
262 B
Python
11 lines
262 B
Python
import logging
|
|
|
|
# Silence noisy loggers
|
|
LOG_OVERRIDES = [
|
|
('requests.packages.urllib3.connectionpool', logging.ERROR),
|
|
('django.db.backends', logging.ERROR)
|
|
]
|
|
|
|
for log_name, log_level in LOG_OVERRIDES:
|
|
logging.getLogger(log_name).setLevel(log_level)
|