Skip to content

Commit bcf8105

Browse files
committed
linting
1 parent 0fe4bcd commit bcf8105

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonFiles/vscode_pytest/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def pytest_exception_interact(node, call, report):
7373
# if discovery, then add the error to error logs.
7474
if type(report) == pytest.CollectReport:
7575
if call.excinfo and call.excinfo.typename != "AssertionError":
76-
if (report.outcome == "skipped" and "SkipTest" in str(call)):
76+
if report.outcome == "skipped" and "SkipTest" in str(call):
7777
return
7878
ERRORS.append(
7979
call.excinfo.exconly() + "\n Check Python Test Logs for more details."

0 commit comments

Comments
 (0)