tests #2799
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
pull_request: | |
paths: | |
- "test/test_datasets_download.py" | |
- ".github/failed_schedule_issue_template.md" | |
- ".github/workflows/tests-schedule.yml" | |
schedule: | |
- cron: "0 9 * * *" | |
jobs: | |
download: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Upgrade system packages | |
run: python -m pip install --upgrade pip setuptools wheel | |
- name: SSL | |
run: python -c 'import ssl; print(ssl.OPENSSL_VERSION)' | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: TODO REMOVE THIS! Install non pre-release version of mpmath. | |
run: pip install "mpmath<1.4" | |
- name: Install torch nightly build | |
run: pip install --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html | |
- name: Install torchvision | |
run: pip install --no-build-isolation --editable . | |
- name: Install all optional dataset requirements | |
run: pip install scipy pycocotools lmdb gdown | |
- name: Install tests requirements | |
run: pip install pytest | |
- name: Run tests | |
run: pytest -ra -v test/test_datasets_download.py | |
- uses: JasonEtco/create-an-issue@v2.4.0 | |
name: Create issue if download tests failed | |
if: failure() && github.event_name == 'schedule' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
REPO: ${{ github.repository }} | |
WORKFLOW: ${{ github.workflow }} | |
JOB: ${{ github.job }} | |
ID: ${{ github.run_id }} | |
with: | |
filename: .github/failed_schedule_issue_template.md |