From 06ee41226dbf3176d33555381dc131a99d593233 Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Sun, 10 Jan 2021 00:41:11 +0100 Subject: [PATCH] no need to run commands in pipenv when using --system --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a9bbda8ad..9d398e6d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,11 +57,11 @@ jobs: sudo apt-get update -qq sudo apt-get install -qq libpoppler-cpp-dev unpaper tesseract-ocr imagemagick ghostscript optipng pip install --upgrade pipenv - pipenv install --system --dev + pipenv install --system --dev --ignore-pipfile cd src/ - pipenv run pytest --cov - pipenv run pycodestyle - pipenv run coveralls + pytest + pycodestyle + coveralls frontend: runs-on: ubuntu-20.04