# MyAutoTestCodeDbackup **Repository Path**: hsiqi/MyAutoTestCodeDbackup ## Basic Information - **Project Name**: MyAutoTestCodeDbackup - **Description**: 1. 学习自动化测试框架的记录 2. 以迪备为测试目标的最佳实践 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-07-27 - **Last Updated**: 2026-01-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 项目简介 ``` # 测试结构组织 project/ ├── src/ │ ├── __init__.py # 使src成为Python包 │ ├── calculator.py │ └── database.py ├── tests/ │ ├── __init__.py # 使tests成为Python包 │ ├── conftest.py # 共享fixture │ ├── unit/ # 单元测试 │ │ ├── test_calculator.py │ │ └── test_utils.py │ ├── integration/ # 集成测试 │ │ └── test_api.py │ └── functional/ # 功能测试 │ └── test_ui.py ├── pytest.ini # pytest配置 ├── requirements.txt # 项目依赖 ├── setup.py # 安装配置(如果打包) └── requirements-test.txt # 测试依赖 ```