Skip to content

Commit bdab841

Browse files
committed
remove most python caching from ci
1 parent b5d6f7e commit bdab841

File tree

1 file changed

+0
-27
lines changed

1 file changed

+0
-27
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ env:
1313

1414
jobs:
1515
coverage:
16-
name: Test Coverage
1716
runs-on: ubuntu-latest
1817

1918
steps:
@@ -38,20 +37,7 @@ jobs:
3837
with:
3938
python-version: '3.11'
4039

41-
- id: cache-py
42-
name: cache python
43-
uses: actions/cache@v3
44-
with:
45-
path: ${{ env.pythonLocation }}
46-
key: >
47-
py-v2
48-
${{ runner.os }}
49-
${{ env.pythonLocation }}
50-
${{ hashFiles('tests/requirements.txt') }}
51-
${{ hashFiles('pyproject.toml') }}
52-
5340
- run: pip install -r tests/requirements.txt
54-
if: steps.cache-py.outputs.cache-hit != 'true'
5541

5642
- run: pip install -e .
5743
env:
@@ -110,20 +96,7 @@ jobs:
11096
with:
11197
python-version: ${{ matrix.python-version }}
11298

113-
- id: cache-py
114-
name: cache python
115-
uses: actions/cache@v3
116-
with:
117-
path: ${{ env.pythonLocation }}
118-
key: >
119-
py
120-
${{ runner.os }}
121-
${{ env.pythonLocation }}
122-
${{ hashFiles('tests/requirements.txt') }}
123-
${{ hashFiles('pyproject.toml') }}
124-
12599
- run: pip install -r tests/requirements.txt
126-
if: steps.cache-py.outputs.cache-hit != 'true'
127100

128101
- run: pip install -e .
129102
env:

0 commit comments

Comments
 (0)