From a8c8095723d0c122da1a202293b42bb09578b424 Mon Sep 17 00:00:00 2001 From: Vladimir Safonkin Date: Mon, 4 Apr 2022 11:14:08 +0200 Subject: [PATCH] Enable pipenv cache --- .github/workflows/e2e-cache.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e-cache.yml b/.github/workflows/e2e-cache.yml index d5048916..76cc3450 100644 --- a/.github/workflows/e2e-cache.yml +++ b/.github/workflows/e2e-cache.yml @@ -46,13 +46,13 @@ jobs: uses: ./ with: python-version: ${{ matrix.python-version }} - # cache: 'pipenv' + cache: 'pipenv' - name: Install pipenv run: pipx install pipenv - name: Install dependencies run: | cd __tests__/data - pipenv install + pipenv install --verbose python-poetry-dependencies-caching: name: Test poetry (Python ${{ matrix.python-version}}, ${{ matrix.os }}) @@ -109,11 +109,11 @@ jobs: uses: ./ with: python-version: ${{ matrix.python-version }} - # cache: 'pipenv' + cache: 'pipenv' cache-dependency-path: '**/pipenv-requirements.txt' - name: Install pipenv run: pipx install pipenv - name: Install dependencies run: | cd __tests__/data - pipenv install \ No newline at end of file + pipenv install --verbose \ No newline at end of file