glenn-jocher commited on
Commit
b8f3b1b
1 Parent(s): 728efa6

Update ci-testing.yml (#637)

Browse files

* Update ci-testing.yml

* Update ci-testing.yml

Files changed (1) hide show
  1. .github/workflows/ci-testing.yml +3 -2
.github/workflows/ci-testing.yml CHANGED
@@ -53,8 +53,9 @@ jobs:
53
 
54
  - name: Download data
55
  run: |
56
- python -c "from utils.google_utils import * ; gdrive_download('1n_oKgR81BJtqk75b00eAjdv03qVCQn2f', 'coco128.zip')"
57
- mv ./coco128 ../
 
58
 
59
  - name: Tests workflow
60
  run: |
 
53
 
54
  - name: Download data
55
  run: |
56
+ curl -L -o temp.zip https://github.com/ultralytics/yolov5/releases/download/v1.0/coco128.zip
57
+ unzip -q temp.zip -d ../
58
+ rm temp.zip
59
 
60
  - name: Tests workflow
61
  run: |