I'm noticing that the install times for scooby are a bit longer on Windows as it takes a few seconds as it seems that pip now defaults to building wheels and installing those even if the installer is a source dist.
This PR builds a wheel instead of sdist and tests the installed wheel rather than testing the source. This is done by cding into the tests directory instead of running it directly from the source directory, where python will use the scooby directory rather than the installed scooby.
Build and deploy wheel to PyPI
I'm noticing that the install times for
scooby
are a bit longer on Windows as it takes a few seconds as it seems thatpip
now defaults to building wheels and installing those even if the installer is a source dist.This PR builds a wheel instead of sdist and tests the installed wheel rather than testing the source. This is done by
cd
ing into the tests directory instead of running it directly from the source directory, where python will use thescooby
directory rather than the installedscooby
.