We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f73d245 commit 8281d98Copy full SHA for 8281d98
1 file changed
tests/cli/test_cli.py
@@ -1,5 +1,4 @@
1
import json
2
-import logging
3
import os
4
import pytest
5
import string
@@ -37,11 +36,12 @@ def runner() -> CliRunner:
37
36
38
@contextmanager
39
def disable_logging():
40
- logging.disable(logging.CRITICAL)
41
- try:
42
- yield
43
- finally:
44
- logging.disable(logging.NOTSET)
+ yield
+ # logging.disable(logging.CRITICAL)
+ # try:
+ # yield
+ # finally:
+ # logging.disable(logging.NOTSET)
45
46
47
def create_example_project(temp_dir, template=ProjectTemplate.DEFAULT) -> None:
0 commit comments