2024-08-28 04:22:22 +08:00
|
|
|
name: pytest
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
2024-08-28 04:31:29 +08:00
|
|
|
RunPyTest:
|
2024-08-28 04:22:22 +08:00
|
|
|
runs-on: ubuntu-latest
|
2024-08-28 04:28:06 +08:00
|
|
|
name: Unit tests
|
|
|
|
steps:
|
2024-08-28 04:31:29 +08:00
|
|
|
- name: 配置Python
|
|
|
|
uses: actions/setup-python@v2
|
2024-08-28 04:28:06 +08:00
|
|
|
with:
|
2024-08-28 04:31:29 +08:00
|
|
|
python-version: '3.10'
|
|
|
|
|
|
|
|
- name: 安装依赖
|
|
|
|
run: |-
|
|
|
|
python -m pip install pdm
|
2024-08-28 04:34:50 +08:00
|
|
|
pytho -m pip install pytest==8.3.2
|
|
|
|
pdm init
|
2024-08-28 04:33:14 +08:00
|
|
|
pdm install
|
2024-08-28 04:34:50 +08:00
|
|
|
|
2024-08-28 04:31:29 +08:00
|
|
|
|
|
|
|
- name: 运行测试
|
2024-08-28 04:33:14 +08:00
|
|
|
run: pytest
|
2024-08-28 04:31:29 +08:00
|
|
|
|
|
|
|
- name: 生成测试报告
|
|
|
|
run: |-
|
2024-08-28 04:33:14 +08:00
|
|
|
pytest --cov-report=xml
|
2024-08-28 04:31:29 +08:00
|
|
|
|
|
|
|
- name: 上传测试报告
|
|
|
|
uses: actions/upload-artifact@v2
|
2024-08-28 04:28:06 +08:00
|
|
|
with:
|
2024-08-28 04:31:29 +08:00
|
|
|
name: coverage
|
|
|
|
|