chore: use Ruff (#1405)

chore: use ruff

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
This commit is contained in:
Henry Schreiner
2023-01-30 15:53:44 -05:00
committed by GitHub
parent 80a8ec7f32
commit c8b037ba3e
25 changed files with 141 additions and 157 deletions
+2 -2
View File
@@ -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)