Skip to content

Commit 6c30784

Browse files
committed
fix prints
1 parent a04091b commit 6c30784

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

python_files/vscode_pytest/__init__.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ def pytest_internalerror(excrepr, excinfo): # noqa: ARG001
124124
excinfo -- the exception information of type ExceptionInfo.
125125
"""
126126
# call.excinfo.exconly() returns the exception as a string.
127-
print("UGHHHHHH2")
128127
ERRORS.append(excinfo.exconly() + "\n Check Python Test Logs for more details.")
129128

130129

@@ -139,7 +138,6 @@ def pytest_exception_interact(node, call, report):
139138
# call.excinfo is the captured exception of the call, if it raised as type ExceptionInfo.
140139
# call.excinfo.exconly() returns the exception as a string.
141140
# If it is during discovery, then add the error to error logs.
142-
print("UGHHHHHH23")
143141

144142
if IS_DISCOVERY:
145143
if call.excinfo and call.excinfo.typename != "AssertionError":
@@ -945,10 +943,6 @@ def pytest_xdist_auto_num_workers(
945943

946944

947945
def pytest_plugin_registered(plugin: object, manager: pytest.PytestPluginManager):
948-
# if manager.has_plugin("pytest_cov"):
949-
# print("has plugin cov pytest")
950-
# else:
951-
# print("does not have plugin cov pytest")
952946
plugin_name = "vscode_xdist"
953947
if (
954948
# only register the plugin if xdist is enabled:

0 commit comments

Comments
 (0)