Commit 32d70ac7 by Sébastien Eustace

Fix tests

parent 4db19664
......@@ -34,7 +34,10 @@ def clear_samples_dist():
shutil.rmtree(str(dist))
@pytest.mark.skipif(sys.platform == "win32" and sys.version_info <= (3, 4))
@pytest.mark.skipif(
sys.platform == "win32" and sys.version_info <= (3, 4),
reason="Disable test on Windows for Python <=3.4",
)
def test_wheel_c_extension():
module_path = fixtures_dir / "extended"
builder = CompleteBuilder(Poetry.create(module_path), NullVenv(True), NullIO())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment