2021-01-23 14:00:48 +05:30
|
|
|
name: Quick Test
|
2021-01-17 00:24:52 +05:30
|
|
|
on: [push, pull_request]
|
2022-11-10 03:41:07 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-01-08 02:16:48 +05:30
|
|
|
jobs:
|
|
|
|
tests:
|
2021-02-05 04:23:04 +05:30
|
|
|
name: Core Test
|
2021-01-23 14:00:48 +05:30
|
|
|
if: "!contains(github.event.head_commit.message, 'ci skip all')"
|
2021-01-08 02:16:48 +05:30
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-08-08 15:24:30 -04:00
|
|
|
- uses: actions/checkout@v3
|
2022-11-30 11:34:51 +05:30
|
|
|
- name: Set up Python 3.11
|
2022-08-08 15:24:30 -04:00
|
|
|
uses: actions/setup-python@v4
|
2021-01-08 02:16:48 +05:30
|
|
|
with:
|
2022-11-30 11:34:51 +05:30
|
|
|
python-version: '3.11'
|
2021-07-21 21:32:49 +01:00
|
|
|
- name: Install test requirements
|
2021-10-05 13:37:58 -04:00
|
|
|
run: pip install pytest pycryptodomex
|
2021-01-08 02:16:48 +05:30
|
|
|
- name: Run tests
|
2022-11-30 11:34:51 +05:30
|
|
|
run: |
|
|
|
|
python3 -m yt_dlp -v || true
|
|
|
|
./devscripts/run_tests.sh core
|
2021-01-08 02:16:48 +05:30
|
|
|
flake8:
|
|
|
|
name: Linter
|
2021-01-23 14:00:48 +05:30
|
|
|
if: "!contains(github.event.head_commit.message, 'ci skip all')"
|
2021-01-08 02:16:48 +05:30
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-08-08 15:24:30 -04:00
|
|
|
- uses: actions/checkout@v3
|
2022-11-30 11:34:51 +05:30
|
|
|
- uses: actions/setup-python@v4
|
2021-01-08 02:16:48 +05:30
|
|
|
- name: Install flake8
|
|
|
|
run: pip install flake8
|
2021-08-23 00:49:23 +05:30
|
|
|
- name: Make lazy extractors
|
2021-10-23 02:07:20 +05:30
|
|
|
run: python devscripts/make_lazy_extractors.py
|
2021-01-08 02:16:48 +05:30
|
|
|
- name: Run flake8
|
2021-07-23 20:18:15 +05:30
|
|
|
run: flake8 .
|