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

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

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命令行,直接输入:
pip install -U pytest
  • 安装如下:
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命令
pip show pytest
(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命令,如果报错提示如下:
    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来代替即可;
# 卸载pytest-rerunfailures
pip uninstall pytest-rerunfailures

# 安装pytest-reportlog
pip install pytest-reportlog
  • 再次查看pytest版本OK了
(venv) F:\pytest_study>pytest -V
pytest 6.2.4
目录
相关文章
|
8月前
|
机器学习/深度学习 人工智能 自然语言处理
【Python机器学习】文本特征提取及文本向量化讲解和实战(图文解释 附源码)
【Python机器学习】文本特征提取及文本向量化讲解和实战(图文解释 附源码)
457 0
|
网络协议 测试技术 Linux
中国移动ML302模组(4G Cat.1 通信模组)TencentOS-tiny AT模组框架适配
中国移动ML302模组(4G Cat.1 通信模组)TencentOS-tiny AT模组框架适配
237 0
|
Java Linux iOS开发
又一款 IDEA 全家桶 神器 ja-netfilter-all 插件
又一款 IDEA 全家桶 神器 ja-netfilter-all 插件
7413 0
又一款 IDEA 全家桶 神器 ja-netfilter-all 插件
|
8月前
|
移动开发 Python
Python3 notes
Python3 notes
|
4月前
|
测试技术 数据库 UED
Python 性能测试进阶之路:JMeter 与 Locust 的强强联合,解锁性能极限
【9月更文挑战第9天】在数字化时代,确保软件系统在高并发场景下的稳定性至关重要。Python 为此提供了丰富的性能测试工具,如 JMeter 和 Locust。JMeter 可模拟复杂请求场景,而 Locust 则能更灵活地模拟真实用户行为。结合两者优势,可全面评估系统性能并优化瓶颈。例如,在电商网站促销期间,通过 JMeter 模拟大量登录请求并用 Locust 模拟用户浏览和购物行为,可有效识别并解决性能问题,从而提升系统稳定性和用户体验。这种组合为性能测试开辟了新道路,助力应对复杂挑战。
130 2
|
数据安全/隐私保护
本地搭建SVN局域网服务器【转】
转自:http://blog.csdn.net/sunbaigui/article/details/8466310 参考链接:http://tortoisesvn.net/docs/nightly/TortoiseSVN_zh_CN/tsvn-serversetup-svnserve.
1567 0
|
4月前
|
存储 内存技术
逻辑地址和物理地址及逻辑磁盘和物理磁盘
【9月更文挑战第3天】在计算机系统中,逻辑地址与物理地址及逻辑磁盘与物理磁盘是核心概念。逻辑地址由段地址和偏移地址组成,与程序在内存中的实际位置无关;物理地址则是内存中实际的绝对地址,用于直接访问内存数据。物理磁盘指实际存储设备,如硬盘或固态硬盘;逻辑磁盘则是通过分区和格式化创建的存储单元,便于管理和使用。理解这些概念对内存和存储管理至关重要。
156 4
|
Oracle 关系型数据库 数据库
ORA-00932: inconsistent datatypes: expected - got NCLOB【ORA-00932: 数据类型不一致: 应为 -, 但却获得 NCLOB 】【解决办法】
ORA-00932: inconsistent datatypes: expected - got NCLOB【ORA-00932: 数据类型不一致: 应为 -, 但却获得 NCLOB 】【解决办法】
|
5月前
|
测试技术 持续交付 Apache
Python性能测试新风尚:JMeter遇上Locust,性能分析不再难🧐
【8月更文挑战第5天】随着软件应用的扩展,性能测试至关重要。Apache JMeter是一款成熟且功能强大的开源工具,支持多种协议,可通过命令行模式执行复杂测试计划,并能与Python集成实现自动化。Locust则是一个基于Python的负载测试工具,通过简单脚本模拟HTTP请求,特别适合Web应用测试,支持自定义请求和深度集成Python库。两者各有优势:JMeter适用于多种应用测试,有直观图形界面;Locust专注HTTP请求,对熟悉Python的开发者更为灵活。结合Python的强大功能,这些工具能帮助我们深入挖掘性能测试潜力,提高应用的稳定性和可靠性。
150 3
|
8月前
|
Web App开发 Python
【python自动化】Playwright基础教程(二)
【python自动化】Playwright基础教程(二)
147 0