📜  如何跨多个环境测试第 3 方 python 库 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:17.454000             🧑  作者: Mango

代码示例1
# 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