Skip to content

Commit faeae12

Browse files
remove virtualenvs
1 parent 37283ad commit faeae12

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/e2e-cache.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@ jobs:
5757
# } else {
5858
# pipenv install flake8 --python ${{ matrix.python-version }}
5959
# }
60-
pipenv install --system flake8
60+
if ($IsWindows) {
61+
rm -rf ~/.virtualenvs/*
62+
}
63+
pipenv install flake8
6164
python-pip-dependencies-caching-path:
6265
name: Test pip (Python ${{ matrix.python-version}}, ${{ matrix.os }})
6366
runs-on: ${{ matrix.os }}
@@ -103,4 +106,7 @@ jobs:
103106
# } else {
104107
# pipenv install flake8 --python ${{ matrix.python-version }}
105108
# }
106-
pipenv install --system flake8
109+
if ($IsWindows) {
110+
rm -rf ~/.virtualenvs/*
111+
}
112+
pipenv install flake8

0 commit comments

Comments
 (0)