> > do you know what this line does? > > ``` > skip_install = true > ```
Sorry, I can't tell if this is a rhetorical question or not. On the off-chance you want an answer, I'll refer you to the tox documentation <https://tox.wiki/en/stable/config.html>: skip_install <https://tox.wiki/en/stable/config.html#skip_install> with default value of False 📢 added in 1.9 Skip installation of the package. This can be used when you need the virtualenv management but do not want to install the current package into that environment. This is as much as I know about it. Apparently it suppresses installation of the package being tested. Since I was skipping the package install, tox didn't know my dependencies (which are embedded in the wheel file), so I had to explicitly mention them. By allowing tox to install my package (skip_install = false), it also installed the package dependencies. Skip
_______________________________________________ code-quality mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/code-quality.python.org/ Member address: [email protected]
