【发布时间】:2020-03-30 18:43:07
【问题描述】:
我有一个使用pipenv 运行pytest 的Python 项目。我想创建一个GitHub Action,每次我提交拉取请求时都会运行 pytest。
我已尝试使用 python-app.yml 入门工作流程。
name: Python application
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with flake8
run: |
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pip install pytest
pytest
但我得到以下构建失败。
ERROR: Could not open requirements file: [Errno 2] No such file or directory: 'requirements.txt'
##[error]Process completed with exit code 1.
我想避免创建requirements.txt 文件,而只是使用 pipenv 来运行 pytest。
如何创建使用 pipenv 运行 pytest 的 GitHub Action?
【问题讨论】:
标签: python github pytest pipenv github-actions