# pytest_exercises **Repository Path**: taikun928/pytest_exercises ## Basic Information - **Project Name**: pytest_exercises - **Description**: pytest学习代码 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-01-21 - **Last Updated**: 2026-02-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # pytest_exercises #### 介绍 pytest学习代码 ### pytest快速入门 ```angular2html 技术概念 生活比喻 作用 fixture(夹具) 餐厅的“套餐” 把测试需要的东西(数据库连接、API地址等)打包好,测试直接“点套餐”就行 parametrize(参数化) 奶茶店的“多种口味” 一个测试逻辑,可以自动测试多种情况(原味、加珍珠、加椰果...) marker(标记) 快递上的“标签” 给测试贴标签:易碎品(slow)、加急件(smoke)、危险品(destructive) conftest.py 公司的“规章制度手册” 所有测试共用的配置都写在这里,大家遵守同一套规则 ```