您当前的位置: 首页 >  Python

彭世瑜

暂无认证

  • 0浏览

    0关注

    2791博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

Python:pytest库进行代码测试

彭世瑜 发布时间:2021-03-09 11:29:10 ,浏览量:0

文档:https://docs.pytest.org/en/stable/

安装

pip install pytest

测试文件 test_hello.py

# -*- coding: utf-8 -*-
import pytest


# test_开头
def test_hello():
    print('hello')


if __name__ == '__main__':
    # 命令行运行 $ pytest
    pytest.main(['-s', __file__])

关注
打赏
1665367115
查看更多评论
立即登录/注册

微信扫码登录

0.1313s