在仅导入TestCase时运行Python unittest

Run Python unittest when only TestCase imported(在仅导入TestCase时运行Python unittest)
本文介绍了在仅导入TestCase时运行Python unittest的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我继承了一个测试目录,如下所示:

tests
  | this_test
    | __init__.py
    | this_test.py  
  | that_test
    | __init__.py
    | that_test.py

其中__init.py__为空,this_test.pythat_test.py如下所示:

from unittest import TestCase

class TestingThis(TestCase):

    def test_testing(self):
        self.assertTrue(1, 1)

它们真的就这么简单。但我的困惑来自于弄清楚如何运营这些业务。我经常看到这样的测试:

import unittest

class TestingThis(unittest.TestCase):

    def test_testing(self):
        self.assertTrue(1, 1)

if __name__ == '__main__':
    unittest.main()

我可以从python3 this_test.py目录中的终端运行它。我已经尝试了多种方法在终端中运行这些程序,但都没有成功,在我的搜索中也没有找到任何显示这种模式的东西。

这是测试的实际设计模式,还是只需要修复这些模式?

推荐答案

您可以使用NOSE来运行测试,并以‘TEST_’开头作为测试文件的名称,以便NAT可以发现测试文件并在其中进行测试。

Example-test_this.py

这篇关于在仅导入TestCase时运行Python unittest的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)