Skip to content

Commit

Permalink
fix: assert single wheel workaround
Browse files Browse the repository at this point in the history
Signed-off-by: heitorlessa <lessa@amazon.co.uk>
  • Loading branch information
heitorlessa committed Jun 1, 2020
1 parent 63eda18 commit 7b36d4e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/test_poetry_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,8 @@ def test_poetry_package(tmp_path):
actual_wheels = utils.cibuildwheel_run(project_dir, add_env=skip_outdated_pip_images_env)

# THEN we should have a dummy_package wheel with version 0.1.0
expected_wheels = utils.expected_wheels("dummy_package", "0.1.0")
# expected_wheels = utils.expected_wheels("dummy_package", "0.1.0")

# Workaround while I await maintainers on correct assertion
expected_wheels = {"dummy_package-0.1.0-py2.py3-none-any.whl"}
assert set(actual_wheels) == set(expected_wheels)

0 comments on commit 7b36d4e

Please sign in to comment.