yt-dlc/.github/workflows/core.yml

62 lines
2.3 KiB
YAML
Raw Normal View History

2021-01-23 08:30:48 +00:00
name: Core 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: Core Tests
if: "!contains(github.event.head_commit.message, 'ci skip')"
2021-01-07 06:41:05 +00:00
runs-on: ${{ matrix.os }}
strategy:
2021-04-22 11:24:41 +00:00
fail-fast: false
2021-01-07 06:41:05 +00:00
matrix:
2021-01-10 21:36:58 +00:00
os: [ubuntu-18.04]
2021-01-07 06:41:05 +00:00
# TODO: python 2.6
2021-01-10 21:36:58 +00:00
python-version: [2.7, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, pypy-2.7, pypy-3.6, pypy-3.7]
2021-01-07 06:41:05 +00:00
python-impl: [cpython]
2021-01-23 08:30:48 +00:00
ytdl-test-set: [core]
2021-01-07 06:41:05 +00:00
run-tests-ext: [sh]
include:
# python 3.2 is only available on windows via setup-python
- os: windows-latest
python-version: 3.2
python-impl: cpython
ytdl-test-set: core
run-tests-ext: bat
# jython
- os: ubuntu-latest
python-impl: jython
ytdl-test-set: core
run-tests-ext: sh
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
if: ${{ matrix.python-impl == 'cpython' }}
with:
python-version: ${{ matrix.python-version }}
- name: Set up Java 8
if: ${{ matrix.python-impl == 'jython' }}
uses: actions/setup-java@v1
with:
java-version: 8
- name: Install Jython
if: ${{ matrix.python-impl == 'jython' }}
run: |
wget https://repo1.maven.org/maven2/org/python/jython-installer/2.7.1/jython-installer-2.7.1.jar -O jython-installer.jar
2021-01-07 06:41:05 +00:00
java -jar jython-installer.jar -s -d "$HOME/jython"
echo "$HOME/jython/bin" >> $GITHUB_PATH
- name: Install nose
if: ${{ matrix.python-impl != 'jython' }}
2021-01-07 06:41:05 +00:00
run: pip install nose
- name: Install nose (Jython)
if: ${{ matrix.python-impl == 'jython' }}
# Working around deprecation of support for non-SNI clients at PyPI CDN (see https://status.python.org/incidents/hzmjhqsdjqgb)
run: |
wget https://files.pythonhosted.org/packages/99/4f/13fb671119e65c4dce97c60e67d3fd9e6f7f809f2b307e2611f4701205cb/nose-1.3.7-py2-none-any.whl
pip install nose-1.3.7-py2-none-any.whl
2021-01-07 06:41:05 +00:00
- name: Run tests
continue-on-error: ${{ matrix.ytdl-test-set == 'download' || matrix.python-impl == 'jython' }}
env:
YTDL_TEST_SET: ${{ matrix.ytdl-test-set }}
run: ./devscripts/run_tests.${{ matrix.run-tests-ext }}
2021-01-23 08:30:48 +00:00
# Linter is in quick-test