摘要:
测试文件名必须以test_开头或者_test结尾,可大写也可小写 测试函数必须以test开头,严谨一致 测试类必须以Test开头,严谨一致 pytest内置函数: .`tmp_path`(唯一临时目录) . 查看更多内置函数:pytest --fixtures 通过pytest --trace-co 阅读全文
摘要:
使用subprocess.Popen创建任务时,会创建一个子进程去执行,要想终止任务,需使用terminate方法 使用from multiprocessjing.pool import ThreadPool创建线程池时,可用terminate方法终止线程,但只终止后续任务,当前任务不会终止。 在使 阅读全文