Skip to content

Commit

Permalink
disable cache in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedh committed May 18, 2024
1 parent 5ee5c91 commit 7853a5e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
python-version: 3.8
- os: windows-latest
python-version: 3.9
- os: macos-latest
- os: macos-13
python-version: 3.9
steps:
- uses: actions/checkout@v3
Expand All @@ -45,10 +45,10 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Test a minimal install
run: |
pip install .
pip install --no-cache-dir .
python tests/test_minimal.py
- name: Install Trimesh
run: pip install .[easy,test]
run: pip install --no-cache-dir .[easy,test]
- name: Run Pytest
run: pytest tests/

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Test a minimal install
run: |
pip install .
pip install --no-cache-dir .
python tests/test_minimal.py
- name: Install Trimesh
run: pip install .[easy,test]
run: pip install --no-cache-dir .[easy,test]
- name: Run Pytest
run: |
pytest
Expand Down

0 comments on commit 7853a5e

Please sign in to comment.