chore: use Ruff (#1405)
chore: use ruff Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
This commit is contained in:
@@ -70,7 +70,7 @@ def test_cpp11(tmp_path):
|
||||
cpp11_project.generate(project_dir)
|
||||
|
||||
actual_wheels = utils.cibuildwheel_run(project_dir)
|
||||
expected_wheels = [w for w in utils.expected_wheels("spam", "0.1.0")]
|
||||
expected_wheels = list(utils.expected_wheels("spam", "0.1.0"))
|
||||
|
||||
assert set(actual_wheels) == set(expected_wheels)
|
||||
|
||||
@@ -89,7 +89,7 @@ def test_cpp14(tmp_path):
|
||||
cpp14_project.generate(project_dir)
|
||||
|
||||
actual_wheels = utils.cibuildwheel_run(project_dir)
|
||||
expected_wheels = [w for w in utils.expected_wheels("spam", "0.1.0")]
|
||||
expected_wheels = list(utils.expected_wheels("spam", "0.1.0"))
|
||||
|
||||
assert set(actual_wheels) == set(expected_wheels)
|
||||
|
||||
|
||||
@@ -65,8 +65,8 @@ def test_overridden_path(tmp_path, capfd):
|
||||
output_dir.mkdir()
|
||||
|
||||
# mess up PATH, somehow
|
||||
with pytest.raises(subprocess.CalledProcessError):
|
||||
if utils.platform == "linux":
|
||||
if utils.platform == "linux":
|
||||
with pytest.raises(subprocess.CalledProcessError):
|
||||
utils.cibuildwheel_run(
|
||||
project_dir,
|
||||
output_dir=output_dir,
|
||||
@@ -75,11 +75,12 @@ def test_overridden_path(tmp_path, capfd):
|
||||
"CIBW_ENVIRONMENT": '''PATH="$(pwd)/new_path:$PATH"''',
|
||||
},
|
||||
)
|
||||
else:
|
||||
new_path = tmp_path / "another_bin"
|
||||
new_path.mkdir()
|
||||
(new_path / "python").touch(mode=0o777)
|
||||
else:
|
||||
new_path = tmp_path / "another_bin"
|
||||
new_path.mkdir()
|
||||
(new_path / "python").touch(mode=0o777)
|
||||
|
||||
with pytest.raises(subprocess.CalledProcessError):
|
||||
utils.cibuildwheel_run(
|
||||
project_dir,
|
||||
output_dir=output_dir,
|
||||
|
||||
@@ -35,8 +35,7 @@ def test(tmp_path, capfd):
|
||||
pure_python_project.generate(project_dir)
|
||||
|
||||
with pytest.raises(subprocess.CalledProcessError):
|
||||
actual_wheels = utils.cibuildwheel_run(project_dir)
|
||||
print("produced wheels:", actual_wheels)
|
||||
print("produced wheels:", utils.cibuildwheel_run(project_dir))
|
||||
|
||||
captured = capfd.readouterr()
|
||||
print("out", captured.out)
|
||||
|
||||
Reference in New Issue
Block a user