You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently if you want to separate tox setup and run via:
tox -e py --notest
tox -e py
The second invocation still builds the package and installs it. I suggest adding --skip-package-install that would skip this step and go ahead straight with running the test suite? (especially useful in CIs to avoid the redundant rebuild and install) @asottile what you think?
The text was updated successfully, but these errors were encountered:
Any cheap validation methods here though? 🤔 I'm not sure I can think of something that does not involve calling out to pip via subprocess which is not always cheap 🤔 and finding out the package name similarly can be expensive unless we start caching the built package names... which then involves more complication (though would be easier in tox 4, where we have better-caching system in-place). So, for now, I'm tempted to go ahead with no validation and make it use with caution flag.
Currently if you want to separate tox setup and run via:
The second invocation still builds the package and installs it. I suggest adding
--skip-package-install
that would skip this step and go ahead straight with running the test suite? (especially useful in CIs to avoid the redundant rebuild and install) @asottile what you think?The text was updated successfully, but these errors were encountered: