2021-01-23 08:30:48 +00:00
|
|
|
name: Download Tests
|
2021-01-16 18:54:52 +00:00
|
|
|
on: [push, pull_request]
|
2021-01-07 06:41:05 +00:00
|
|
|
jobs:
|
|
|
|
tests:
|
2021-01-23 08:30:48 +00:00
|
|
|
name: Download Tests
|
2021-02-25 21:51:39 +00:00
|
|
|
if: "contains(github.event.head_commit.message, 'ci run dl')"
|
2021-01-07 06:41:05 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: true
|
|
|
|
matrix:
|
2021-01-10 21:36:58 +00:00
|
|
|
os: [ubuntu-18.04]
|
2021-06-05 19:14:34 +00:00
|
|
|
python-version: [3.6, 3.7, 3.8, 3.9, pypy-3.6, pypy-3.7]
|
2021-01-07 06:41:05 +00:00
|
|
|
run-tests-ext: [sh]
|
|
|
|
include:
|
|
|
|
- os: windows-latest
|
2021-06-05 19:14:34 +00:00
|
|
|
python-version: 3.4 # Windows x86 build is still in 3.4
|
2021-01-07 06:41:05 +00:00
|
|
|
run-tests-ext: bat
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install nose
|
|
|
|
run: pip install nose
|
|
|
|
- name: Run tests
|
2021-06-05 19:14:34 +00:00
|
|
|
continue-on-error: true
|
2021-01-07 06:41:05 +00:00
|
|
|
env:
|
2021-06-05 19:14:34 +00:00
|
|
|
YTDL_TEST_SET: download
|
2021-01-07 06:41:05 +00:00
|
|
|
run: ./devscripts/run_tests.${{ matrix.run-tests-ext }}
|