Skip to content

Commit

Permalink
Deactivate caching in fulltest pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianSosic committed Jul 2, 2024
1 parent 6e38822 commit 2ffe300
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# NOTES:
# - The map syntax used for matrix is flagged red but actually works
# - This runs everything in Python 3.12, except the fulltest which is also run in 3.10
# - Only coretest and fulltest environments are cached due to space limit

name: Continuous Integration
on:
Expand Down Expand Up @@ -155,10 +154,6 @@ jobs:
id: setup-python
with:
python-version: ${{ matrix.py-version.semantic }}
- uses: actions/cache@v4
with:
path: .tox/fulltest-${{ matrix.py-version.tox }}
key: fulltest-${{ matrix.py-version.tox }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('tox.ini') }}
- name: Run full tests
run: |
pip install tox-uv
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/regular.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# NOTES:
# - The map syntax used for matrix is flagged red but actually works
# - This runs everything in Python 3.10, 3.11 and 3.12
# - No environments are cached due to space limit
# - Environments are **not** cached in order to perform a full end-to-end test

name: Regular Checks
on:
Expand Down

0 comments on commit 2ffe300

Please sign in to comment.