在Pycharm中,我想有条件地运行集成测试,但始终运行单元测试。
Integration tests are named like this: itest_<module name>.py.
Unit tests are named like this: test_<module name>.py
这可以通过某种运行/调试配置或某些其他配置/代码技巧来完成吗?
答案 0 :(得分:1)
我处理此问题的方法是将测试命名为test_,将集成测试命名为itest_。然后,我将发现与模式* test_一起使用。