From 9156f8336f86762884342738fd3b9f97c9cea916 Mon Sep 17 00:00:00 2001
From: Vladimir Safonkin <vsafonkin@github.com>
Date: Sun, 3 Apr 2022 20:11:50 +0200
Subject: [PATCH] Set location for pipenv test

---
 .github/workflows/e2e-cache.yml | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/e2e-cache.yml b/.github/workflows/e2e-cache.yml
index 237577b6..97d1147f 100644
--- a/.github/workflows/e2e-cache.yml
+++ b/.github/workflows/e2e-cache.yml
@@ -50,7 +50,9 @@ jobs:
       - name: Install pipenv
         run: pipx install pipenv
       - name: Install dependencies
-        run: pipenv install requests
+        run: |
+          cd __tests__/data
+          pipenv install requests
 
   python-poetry-dependencies-caching:
     name: Test poetry (Python ${{ matrix.python-version}}, ${{ matrix.os }})
@@ -112,4 +114,6 @@ jobs:
       - name: Install pipenv
         run: pipx install pipenv
       - name: Install dependencies
-        run: pipenv install numpy
\ No newline at end of file
+        run: |
+          cd __tests__/data
+          pipenv install requests
\ No newline at end of file