Answers for "how to test a 3rd party python library across multiple environments"

0

how to test a 3rd party python library across multiple environments

# Check if the project has tox.ini file defined
# install tox library in your environment, virutal env or notebook
pip install tox

# traverse to that project directory where tox.ini is located
# start tox app
tox

# it'll start with output of unit testing result in all python environment
# that project supports
Posted by: Guest on July-12-2020

Code answers related to "how to test a 3rd party python library across multiple environments"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language