Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #2320

Merged
merged 3 commits into from
Mar 21, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.9.10
rev: v0.11.0
hooks:
- id: ruff
args: ["--fix", "--show-fixes"]
2 changes: 1 addition & 1 deletion test/test_environment.py
Original file line number Diff line number Diff line change
@@ -89,7 +89,7 @@ def test_overridden_path(tmp_path, capfd):
},
)

assert len(os.listdir(output_dir)) == 0
assert len(list(output_dir.iterdir())) == 0
captured = capfd.readouterr()
assert "python available on PATH doesn't match our installed instance" in captured.err.replace(
"venv", "installed"
2 changes: 1 addition & 1 deletion test/test_from_sdist.py
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@ def cibuildwheel_from_sdist_run(
env=env,
check=True,
)
return os.listdir(tmp_output_dir)
return [p.name for p in Path(tmp_output_dir).iterdir()]


# tests
3 changes: 1 addition & 2 deletions test/test_testing.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import inspect
import os
import subprocess
import textwrap
from pathlib import Path
@@ -180,7 +179,7 @@ def test_failing_test(tmp_path):
},
)

assert len(os.listdir(output_dir)) == 0
assert len(list(output_dir.iterdir())) == 0


@pytest.mark.parametrize("test_runner", ["pytest", "unittest"])
2 changes: 1 addition & 1 deletion test/utils.py
Original file line number Diff line number Diff line change
@@ -140,7 +140,7 @@ def cibuildwheel_run(
cwd=project_path,
check=True,
)
wheels = os.listdir(output_dir or tmp_output_dir)
wheels = [p.name for p in (output_dir or Path(tmp_output_dir)).iterdir()]
return wheels