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