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:
|
2023-11-13 00:30:01 +00:00
|
|
|
- uses: actions/checkout@v4
|
[cleanup] Misc (#11216)
- Add Python 3.13 to CI, finalize 3.13 support
- Remove Python 3.8 from CI in preparation for removing 3.8 support
- Document that PyPy3.8 and PyPy3.9 are no longer supported
- Usual documentation fixes and code cleanup
Closes #8248, Closes #11146, Closes #11149, Closes #11211
Authored by: Grub4K, grqz, DTrombett, KarboniteKream, bashonly, mikkovedru, seproDev
Co-authored-by: N/Ame <173015200+grqz@users.noreply.github.com>
Co-authored-by: DTrombett <d@trombett.org>
Co-authored-by: =?UTF-8?q?Klemen=20Ko=C5=A1ir?= <klemen.kosir@kream.io>
Co-authored-by: bashonly <88596187+bashonly@users.noreply.github.com>
Co-authored-by: Mikko Vedru <mikko.vedru@gmail.com>
Co-authored-by: sepro <sepro@sepr0.com>
2024-10-22 04:50:35 +00:00
|
|
|
- name: Set up Python 3.9
|
2024-02-11 14:47:16 +00:00
|
|
|
uses: actions/setup-python@v5
|
2021-01-07 20:46:48 +00:00
|
|
|
with:
|
[cleanup] Misc (#11216)
- Add Python 3.13 to CI, finalize 3.13 support
- Remove Python 3.8 from CI in preparation for removing 3.8 support
- Document that PyPy3.8 and PyPy3.9 are no longer supported
- Usual documentation fixes and code cleanup
Closes #8248, Closes #11146, Closes #11149, Closes #11211
Authored by: Grub4K, grqz, DTrombett, KarboniteKream, bashonly, mikkovedru, seproDev
Co-authored-by: N/Ame <173015200+grqz@users.noreply.github.com>
Co-authored-by: DTrombett <d@trombett.org>
Co-authored-by: =?UTF-8?q?Klemen=20Ko=C5=A1ir?= <klemen.kosir@kream.io>
Co-authored-by: bashonly <88596187+bashonly@users.noreply.github.com>
Co-authored-by: Mikko Vedru <mikko.vedru@gmail.com>
Co-authored-by: sepro <sepro@sepr0.com>
2024-10-22 04:50:35 +00:00
|
|
|
python-version: '3.9'
|
2021-07-21 20:32:49 +00:00
|
|
|
- name: Install test requirements
|
2024-09-27 22:46:22 +00:00
|
|
|
run: python3 ./devscripts/install_deps.py -o --include test
|
2021-01-07 20:46:48 +00:00
|
|
|
- name: Run tests
|
2024-08-21 07:17:26 +00:00
|
|
|
timeout-minutes: 15
|
2022-11-30 06:04:51 +00:00
|
|
|
run: |
|
|
|
|
python3 -m yt_dlp -v || true
|
2024-09-30 22:33:17 +00:00
|
|
|
python3 ./devscripts/run_tests.py --pytest-args '--reruns 2 --reruns-delay 3.0' core
|
2024-05-26 19:27:21 +00:00
|
|
|
check:
|
|
|
|
name: Code check
|
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:
|
2023-11-13 00:30:01 +00:00
|
|
|
- uses: actions/checkout@v4
|
2024-02-11 14:47:16 +00:00
|
|
|
- uses: actions/setup-python@v5
|
2024-04-09 16:12:26 +00:00
|
|
|
with:
|
[cleanup] Misc (#11216)
- Add Python 3.13 to CI, finalize 3.13 support
- Remove Python 3.8 from CI in preparation for removing 3.8 support
- Document that PyPy3.8 and PyPy3.9 are no longer supported
- Usual documentation fixes and code cleanup
Closes #8248, Closes #11146, Closes #11149, Closes #11211
Authored by: Grub4K, grqz, DTrombett, KarboniteKream, bashonly, mikkovedru, seproDev
Co-authored-by: N/Ame <173015200+grqz@users.noreply.github.com>
Co-authored-by: DTrombett <d@trombett.org>
Co-authored-by: =?UTF-8?q?Klemen=20Ko=C5=A1ir?= <klemen.kosir@kream.io>
Co-authored-by: bashonly <88596187+bashonly@users.noreply.github.com>
Co-authored-by: Mikko Vedru <mikko.vedru@gmail.com>
Co-authored-by: sepro <sepro@sepr0.com>
2024-10-22 04:50:35 +00:00
|
|
|
python-version: '3.9'
|
2024-05-26 19:27:21 +00:00
|
|
|
- name: Install dev dependencies
|
|
|
|
run: python3 ./devscripts/install_deps.py -o --include static-analysis
|
2021-08-22 19:19:23 +00:00
|
|
|
- name: Make lazy extractors
|
2024-02-11 14:17:08 +00:00
|
|
|
run: python3 ./devscripts/make_lazy_extractors.py
|
2024-05-26 19:27:21 +00:00
|
|
|
- name: Run ruff
|
|
|
|
run: ruff check --output-format github .
|
|
|
|
- name: Run autopep8
|
|
|
|
run: autopep8 --diff .
|