mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-30 21:20:34 +00:00
3ca3f77f9c
basically copying content of youtube_dl folder to youtube_dlc and excluding the youtube_dl folder when compiling
42 lines
887 B
YAML
42 lines
887 B
YAML
language: python
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "3.2"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
- "pypy"
|
|
- "pypy3"
|
|
dist: trusty
|
|
env:
|
|
- YTDL_TEST_SET=core
|
|
jobs:
|
|
include:
|
|
- python: 3.7
|
|
dist: xenial
|
|
env: YTDL_TEST_SET=core
|
|
- python: 3.8
|
|
dist: xenial
|
|
env: YTDL_TEST_SET=core
|
|
- python: 3.8-dev
|
|
dist: xenial
|
|
env: YTDL_TEST_SET=core
|
|
- env: JYTHON=true; YTDL_TEST_SET=core
|
|
- name: flake8
|
|
python: 3.8
|
|
dist: xenial
|
|
install: pip install flake8
|
|
script: flake8 .
|
|
fast_finish: true
|
|
allow_failures:
|
|
- env: YTDL_TEST_SET=download
|
|
- env: JYTHON=true; YTDL_TEST_SET=core
|
|
before_install:
|
|
- if [ "$JYTHON" == "true" ]; then ./devscripts/install_jython.sh; export PATH="$HOME/jython/bin:$PATH"; fi
|
|
before_script:
|
|
- rm -rf /youtube_dlc/*
|
|
- cp /youtube_dl/* /youtube_dlc
|
|
script: ./devscripts/run_tests.sh
|