前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >pytest学习和使用1-pytest安装和版本查看

pytest学习和使用1-pytest安装和版本查看

原创
作者头像
虫无涯
发布2023-02-06 09:46:24
1.4K0
发布2023-02-06 09:46:24
举报
文章被收录于专栏:全栈测试技术

1 学习来源

https://docs.pytest.org/en/latest/index.html

2 依赖的环境

环境

版本

python

大于等于3.6

平台

支持linux、windows

3 本文学习环境

  • Python:3.7.0
  • 操作系统:windows10,64位
  • Pycharm:2020.2

4 pytest安装

  • 打开cmd命令行,直接输入:
代码语言:python
代码运行次数:0
复制
pip install -U pytest
  • 安装如下:
代码语言:python
代码运行次数:0
复制
C:\Users\Administrator>pip install -U pytest
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Requirement already satisfied: pytest in d:\python37\lib\site-packages (5.3.2)
Collecting pytest
  Downloading https://pypi.tuna.tsinghua.edu.cn/packages/a1/59/6821e900592fbe261f19d67e4def0cb27e52ef8ed16d9922c144961cc1ee/pytest-6.2.4-py3-none-any.whl (280 kB)
     |████████████████████████████████| 280 kB 1.6 MB/s
Requirement already satisfied: importlib-metadata>=0.12 in d:\python37\lib\site-packages (from pytest) (2.1.1)
Requirement already satisfied: pluggy<1.0.0a1,>=0.12 in d:\python37\lib\site-packages (from pytest) (0.13.1)
Requirement already satisfied: colorama in d:\python37\lib\site-packages (from pytest) (0.4.4)
Requirement already satisfied: atomicwrites>=1.0 in d:\python37\lib\site-packages (from pytest) (1.4.0)
Requirement already satisfied: toml in d:\python37\lib\site-packages (from pytest) (0.10.2)
Requirement already satisfied: packaging in d:\python37\lib\site-packages (from pytest) (20.8)
Requirement already satisfied: attrs>=19.2.0 in d:\python37\lib\site-packages (from pytest) (20.3.0)
Requirement already satisfied: iniconfig in d:\python37\lib\site-packages (from pytest) (1.1.1)
Requirement already satisfied: py>=1.8.2 in d:\python37\lib\site-packages (from pytest) (1.10.0)
Requirement already satisfied: zipp>=0.5 in d:\python37\lib\site-packages (from importlib-metadata>=0.12->pytest) (1.2.0)
Requirement already satisfied: pyparsing>=2.0.2 in d:\python37\lib\site-packages (from packaging->pytest) (2.4.7)
Installing collected packages: pytest
  Attempting uninstall: pytest
    Found existing installation: pytest 5.3.2
    Uninstalling pytest-5.3.2:
      Successfully uninstalled pytest-5.3.2
Successfully installed pytest-6.2.4

5 查看pytest版本

  • 使用pip show命令
代码语言:python
代码运行次数:0
复制
pip show pytest
代码语言:python
代码运行次数:0
复制
(venv) F:\pytest_study>pip show pytest
Name: pytest
Version: 6.2.4
Summary: pytest: simple powerful testing with Python
Home-page: https://docs.pytest.org/en/latest/
Author: Holger Krekel, Bruno Oliveira, Ronny Pfannschmidt, Floris Bruynooghe, Brianna Laugher, Florian Bruhin and others
Author-email:
License: MIT
Location: d:\python37\lib\site-packages
Requires: pluggy, importlib-metadata, attrs, iniconfig, toml, py, packaging, atomicwrites, colorama
Required-by: pytest-xdist, pytest-rerunfailures, pytest-ordering, pytest-metadata, pytest-html, pytest-forked, pytest-cov, allure-pytest
  • 使用--version命令,如果报错提示如下:
代码语言:python
代码运行次数:0
复制
    plugin = ep.load()
  File "d:\python37\lib\site-packages\importlib_metadata\__init__.py", line 105, in load
    module = import_module(match.group('module'))
  File "d:\python37\lib\importlib\__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1006, in _gcd_import
  File "<frozen importlib._bootstrap>", line 983, in _find_and_load
  File "<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 677, in _load_unlocked
  File "d:\python37\lib\site-packages\_pytest\assertion\rewrite.py", line 170, in exec_module
    exec(co, module.__dict__)
  File "d:\python37\lib\site-packages\pytest_rerunfailures.py", line 8, in <module>
    from _pytest.resultlog import ResultLog
ModuleNotFoundError: No module named '_pytest.resultlog'
  • 是因为之前安装过pytest-rerunfailures是用例失败重跑,pytest-rerunfailures不能与pytest 6.1.0以上的版本一起使用,所以卸载pytest-rerunfailures后使用pytest-reportlog来代替即可;
代码语言:python
代码运行次数:0
复制
# 卸载pytest-rerunfailures
pip uninstall pytest-rerunfailures

# 安装pytest-reportlog
pip install pytest-reportlog
  • 再次查看pytest版本OK了
代码语言:python
代码运行次数:0
复制
(venv) F:\pytest_study>pytest -V
pytest 6.2.4

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 1 学习来源
  • 2 依赖的环境
  • 3 本文学习环境
  • 4 pytest安装
  • 5 查看pytest版本
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档