diff options
Diffstat (limited to 'tests/api/__init__.py')
-rw-r--r-- | tests/api/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/api/__init__.py b/tests/api/__init__.py index dcee5b5..a900316 100644 --- a/tests/api/__init__.py +++ b/tests/api/__init__.py @@ -1,3 +1,4 @@ +import logging from subprocess import CompletedProcess from unittest import mock @@ -20,4 +21,6 @@ class SnekAPITestCase(testing.TestCase): ) self.addCleanup(self.patcher.stop) + logging.getLogger("snekbox.nsjail").setLevel(logging.WARNING) + self.app = SnekAPI() |