Skip to content

Commit

Permalink
incorrect print included for absolute path calculations (#21932)
Browse files Browse the repository at this point in the history
an additional print statement was left in the pytest plugin which
unnecessarily printed all absolute paths calculated.
  • Loading branch information
eleanorjboyd authored Sep 11, 2023
1 parent 8543dd3 commit e32657f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pythonFiles/vscode_pytest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ def get_absolute_test_id(test_id: str, testPath: pathlib.Path) -> str:
"""
split_id = test_id.split("::")[1:]
absolute_test_id = "::".join([str(testPath), *split_id])
print("absolute path", absolute_test_id)
return absolute_test_id


Expand Down

0 comments on commit e32657f

Please sign in to comment.