mirror of https://github.com/yt-dlp/yt-dlp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
812 B
Plaintext
39 lines
812 B
Plaintext
12 years ago
|
language: python
|
||
|
python:
|
||
|
- "2.6"
|
||
|
- "2.7"
|
||
10 years ago
|
- "3.2"
|
||
12 years ago
|
- "3.3"
|
||
11 years ago
|
- "3.4"
|
||
9 years ago
|
- "3.5"
|
||
8 years ago
|
- "3.6"
|
||
7 years ago
|
- "pypy"
|
||
|
- "pypy3"
|
||
6 years ago
|
dist: trusty
|
||
8 years ago
|
env:
|
||
|
- YTDL_TEST_SET=core
|
||
5 years ago
|
jobs:
|
||
7 years ago
|
include:
|
||
6 years ago
|
- python: 3.7
|
||
|
dist: xenial
|
||
|
env: YTDL_TEST_SET=core
|
||
5 years ago
|
- python: 3.8
|
||
|
dist: xenial
|
||
|
env: YTDL_TEST_SET=core
|
||
6 years ago
|
- python: 3.8-dev
|
||
|
dist: xenial
|
||
|
env: YTDL_TEST_SET=core
|
||
7 years ago
|
- env: JYTHON=true; YTDL_TEST_SET=core
|
||
5 years ago
|
- name: flake8
|
||
|
python: 3.8
|
||
|
dist: xenial
|
||
|
install: pip install flake8
|
||
|
script: flake8 .
|
||
7 years ago
|
fast_finish: true
|
||
|
allow_failures:
|
||
|
- env: YTDL_TEST_SET=download
|
||
7 years ago
|
- env: JYTHON=true; YTDL_TEST_SET=core
|
||
|
before_install:
|
||
|
- if [ "$JYTHON" == "true" ]; then ./devscripts/install_jython.sh; export PATH="$HOME/jython/bin:$PATH"; fi
|
||
8 years ago
|
script: ./devscripts/run_tests.sh
|