-
GitHub Actions工作流中使用的pytest插件pytest-github-actions-annotate-failures用于注释失败的测试
资源介绍
pytest-github-actions-注释失败
插件使用的注释失败的测试
用法
只需在工作流程中使用此插件安装并运行pytest即可。 例如,
name : test
on :
push :
jobs :
test :
runs-on : ubuntu-latest
steps :
- uses : actions/checkout@v2
- uses : actions/setup-python@v1
with :
python-version : 3.7
- name : Install dependencies
run : |
python -m pip install --upgrade pip
pip install -r requirements.tx