# ApiPytest **Repository Path**: os-test-cube/api-pytest ## Basic Information - **Project Name**: ApiPytest - **Description**: 基于 pytest 的接口自动化测试框架 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-25 - **Last Updated**: 2025-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Git 全局设置: ```bash git config --global user.name "张小剩" git config --global user.email "like.chn@outlook.com" ``` 创建 git 仓库: ```bash mkdir api-pytest cd api-pytest git init -b "main" touch README.md git add README.md git commit -m "first commit" git remote add origin git@gitee.com:os-auto-test/api-pytest.git git push -u origin "main" ```