From 1ca445cb861c690a4f7f5626663bce0d591aee49 Mon Sep 17 00:00:00 2001 From: Vladimir Safonkin Date: Sun, 3 Apr 2022 20:04:03 +0200 Subject: [PATCH] Rework python-pipenv-dependencies-caching-path test --- .github/workflows/e2e-cache.yml | 2 +- __tests__/data/pipenv-requirements.txt | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 __tests__/data/pipenv-requirements.txt diff --git a/.github/workflows/e2e-cache.yml b/.github/workflows/e2e-cache.yml index 5d0952f8..237577b6 100644 --- a/.github/workflows/e2e-cache.yml +++ b/.github/workflows/e2e-cache.yml @@ -108,7 +108,7 @@ jobs: with: python-version: ${{ matrix.python-version }} cache: 'pipenv' - cache-dependency-path: '**/requirements-linux.txt' + cache-dependency-path: '**/pipenv-requirements.txt' - name: Install pipenv run: pipx install pipenv - name: Install dependencies diff --git a/__tests__/data/pipenv-requirements.txt b/__tests__/data/pipenv-requirements.txt new file mode 100644 index 00000000..ddf9425c --- /dev/null +++ b/__tests__/data/pipenv-requirements.txt @@ -0,0 +1,2 @@ +numpy==1.22.3 +pandas==1.4.2 \ No newline at end of file