我通过 shell 执行我的测试文件并调用来运行我的 python 单元测试
if __name__ == '__main__':
unittest.main()
在测试文件的末尾。
我必须支持 python 2.7 和 python 3(我正在为 Sublime Text 编写插件。)
我的 shell 运行 python 2.7,它与我的 Mac OS X 版本一起提供。Sublime Text 3 与它自己的 Python 版本捆绑在一起(python 3 的某种风格)。有没有一种方法可以从 shell 使用 python 2.7 和 python 3(希望不必安装另一个版本的 python)运行我的测试文件?