Skip to content
Snippets Groups Projects
Commit 310778df authored by clytwynec's avatar clytwynec
Browse files

Merge pull request #4838 from edx/clytwynec/remove_warnings_from_lettuce_test_logs

set root logging level for acceptance tests to ERROR
parents 33815f1c bdc4fd4d
No related merge requests found
......@@ -18,6 +18,9 @@ DEBUG = True
import logging
logging.basicConfig(filename=TEST_ROOT / "log" / "cms_acceptance.log", level=logging.ERROR)
# set root logger level
logging.getLogger().setLevel(logging.ERROR)
import os
......
......@@ -19,6 +19,9 @@ SITE_NAME = 'localhost:{}'.format(LETTUCE_SERVER_PORT)
import logging
logging.basicConfig(filename=TEST_ROOT / "log" / "lms_acceptance.log", level=logging.ERROR)
# set root logger level
logging.getLogger().setLevel(logging.ERROR)
import os
from random import choice
import string
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment