依赖管理
依赖管理文件路径
shell
my_autotest
├─ case
│ ├─ assert_res
│ │ └─ README.md
│ ├─ base_case.py
│ ├─ test_mycase_001.py
│ └─ test_mycase_002.py
├─ method
│ ├─ image_res
│ │ └─ README.md
│ ├─ static_res
│ │ └─ README.md
│ ├─ assert_method.py
│ ├─ base_method.py
│ ├─ my_autotest_method.py
│ └─ ui.ini
├─ .gitignore
├─ README.md
├─ config.py
├─ conftest.py
├─ mycase.csv
├─ pytest.ini
├─ requirements.txt <--依赖管理文件
└─ ruff.toml
依赖添加
requirements.txt
bash
-i https://pypi.tuna.tsinghua.edu.cn/simple
youqu3