ionelmc / tox-wheel

A Tox plugin that builds and installs wheels instead of sdist. Note that this plugin is obsolte as tox 4.0 already has wheel support.
BSD 2-Clause "Simplified" License
23 stars 10 forks source link

option to re-use existing wheels #10

Open graingert opened 3 years ago

graingert commented 3 years ago

I'd like to be able to build a wheel in a separate GitHub Actions workflow, then download that wheel for every other test workflow

graingert commented 3 years ago

see https://github.com/tox-dev/tox/issues/1566

ionelmc commented 3 years ago

Tox has this install_command=python -m pip install {opts} {packages} but it isn't customizable enough to have a tool to do package selection and such, plus the building needs to be a no-op. IMO this problem would be better solved in a different tox plugin, like an alternative to tox-wheel.