diff --git a/.github/workflows/ci-testing.yml b/.github/workflows/ci-testing.yml index b00335c..23dbf48 100644 --- a/.github/workflows/ci-testing.yml +++ b/.github/workflows/ci-testing.yml @@ -53,8 +53,9 @@ jobs: - name: Download data run: | - python -c "from utils.google_utils import * ; gdrive_download('1n_oKgR81BJtqk75b00eAjdv03qVCQn2f', 'coco128.zip')" - mv ./coco128 ../ + curl -L -o temp.zip https://github.com/ultralytics/yolov5/releases/download/v1.0/coco128.zip + unzip -q temp.zip -d ../ + rm temp.zip - name: Tests workflow run: |