作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我运行 pytest
时,我得到了一个带有难看分隔符的非常冗长的输出 ======================== ================================================ ================================================ ===
例如:
======================================================================================================= test session starts =======================================================================================================
platform linux -- Python 3.6.8, pytest-5.0.1, py-1.8.0, pluggy-0.12.0
rootdir: /home/ycr/info1-labo-04
collected 1 item
test_armstrong.py . [100%]
==================================================================================================== 1 passed in 0.03 seconds =====================================================================================================
是否有可能获得更紧凑的输出,例如:
...
----------------------------------------------------------------------
Ran 3 tests in 5.63s
OK
最佳答案
你可以试试这个pytest命令
pytest -q --no-print-logs --disable-warnings --tb=no tests.py
它应该向您显示最少的信息
-q
-> 安静输出
--no-print-logs
-> 如果你有日志,不要打印它们
--disable-warnings
-> 如果有任何警告不显示它们
--tb=no
-> 如果有任何回溯不显示它们
关于python - 极简 Pytest 输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58393228/
我正在寻找绘制极坐标数据的替代方法。我需要实现像 this 这样的图表具有动态选项,例如 this . 非常感谢您的帮助! 最佳答案 我个人需要这些: Highcharts JS canvasXpre
我是一名优秀的程序员,十分优秀!