Skip to content

Commit

Permalink
added clear cache in windows in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
piterand committed Oct 16, 2023
1 parent 3fd0896 commit bdf5747
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,15 @@ jobs:
run: |
cd ammico
python -m pytest test/test_multimodal_search.py -m "not long" -svv --cov=. --cov-report=xml --cov-append
- name: Clear cache windows
if: matrix.os == 'windows-latest'
run: |
del /S 'C:\Users\runneradmin\AppData\Local\pooch\pooch\Cache\*
# - name: Run pytest test_objects
# run: |
# cd ammico
# python -m pytest test/test_objects.py -svv --cov=. --cov-report=xml --cov-append
- name: Clear cache
- name: Clear cache ubuntu
if: matrix.os == 'ubuntu-22.04'
run: |
rm -rf ~/.cache/*
Expand Down

0 comments on commit bdf5747

Please sign in to comment.