Skip to content

Commit

Permalink
ruff: enable flake8-print
Browse files Browse the repository at this point in the history
  • Loading branch information
abn authored and neersighted committed Mar 24, 2024
1 parent 8b9cf46 commit 63a9942
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ extend-select = [
"PGH", # pygrep
"RUF", # ruff checks
"SIM", # flake8-simplify
"T20", # flake8-print
"TCH", # flake8-type-checking
"TID", # flake8-tidy-imports
"UP", # pyupgrade
Expand Down
2 changes: 1 addition & 1 deletion tests/installation/test_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -1426,7 +1426,7 @@ def test_build_system_requires_install_failure(

mocker.stopall() # to get real output
output = io.fetch_output().strip()
print(output)

assert output.startswith(expected_start)
assert output.endswith(expected_end)

Expand Down
1 change: 0 additions & 1 deletion tests/packages/test_locker.py
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,6 @@ def test_root_extras_dependencies_are_ordered(
with locker.lock.open(encoding="utf-8") as f:
content = f.read()

print(content)
assert content == expected


Expand Down

0 comments on commit 63a9942

Please sign in to comment.