Feature Enhancement - Add tox for testing multiple python versions
Closed this issue · 3 comments
gurupratap-matharu commented
An awesome feature for this package would be to use a great tool like tox
to automatically test the package against different python versions.
A PR is linked which does it ;-)
Thank you
davidwagner commented
Looks like this is PR #482. I'm new to tox: can you help me understand what the benefit would be? Is it common for code to fail on one version of Python and not another?
gurupratap-matharu commented
Failing of a package on different python versions depends upon the
complexity of the package.
Since this repo is a pip package we cannot guarantee each user using it
will have the same base python version
we want them to have.
It's great that the package is being tested by unit tests.
Tox simply helps run those tests against different python versions
automatically to assure that the package
is guaranteed to work properly. This enhances the usability.
Tox is pretty popular to test pythonic packages.
Check this excellent python package using it https://github.com/joke2k/faker
…On Sat, Nov 14, 2020 at 7:41 PM davidwagner ***@***.***> wrote:
Looks like this is PR #482
<#482>. I'm new to tox: can you
help me understand what the benefit would be? Is it common for code to fail
on one version of Python and not another?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#483 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AJGAMT2T32ZUYHEGOJSTFO3SP4BSRANCNFSM4SSPON5A>
.
adnanhemani commented
Closed with #482.