summary refs log tree commit diff
path: root/devscripts
Commit message (Collapse)AuthorAgeFilesLines
* Switch to GitHub actions for CISergey M․2020-12-201-0/+17
| | | | Travis CI has ignored our requests and does not look to be interested in providing OSS credits for youtube-dl
* [devscripts/make_lazy_extractors] Correct a spelling mistake (#26991)Edward Betts2020-11-161-1/+1
|
* [devscripts/create-github-release] Remove unused importnmeum2020-01-061-1/+0
|
* [devscripts/create-github-release] Switch to using PAT for authenticationSergey M․2020-01-011-13/+4
| | | | Basic authentication will be deprecated soon
* Fix W504 and disable W503 (closes #20863)Sergey M․2019-05-111-4/+4
|
* Issue template overhaulSergey M․2019-04-271-2/+2
|
* Start moving to ytdl-orgSergey M․2019-03-115-7/+7
|
* [devscripts/update-copyright] Update copyright yearSergey M․2018-06-041-1/+1
|
* [devscripts/gh-pages/generate-download.py] Use program checksum from ↵Sergey M․2018-04-251-12/+7
| | | | versions.json
* [travis] Add Jython buildSergey M․2018-01-021-0/+5
|
* [Makefile,devscripts/run_tests.sh] Actually exclude network testsYen Chi Hsuan2017-11-271-1/+2
| | | | Closes #14858
* [devscripts/check-porn] Fix gettestcases importKareem Moussa2017-09-191-2/+2
|
* [devscripts/prepare_manpage] Fix deprecated escape sequence on py36Yen Chi Hsuan2017-06-171-1/+1
|
* [devscripts/make_lazy_extractors] Fix making lazy extractors on python 3 ↵Sergey M․2017-02-241-1/+2
| | | | under Windows
* [devscripts/run_tests] Exclude youtube lists tests from core buildSergey M․2017-02-231-1/+1
|
* [travis] Run tests in parallelYen Chi Hsuan2017-02-191-1/+3
| | | | | | | | | | | | [test_download] Print test names in case of network errors [test_download] Add comments for nose parameters [test_download] Modify outtmpl to prevent info JSON filename conflicts Thanks @jaimeMF for the idea. [travis] Only download tests should be run in parallel
* [devscripts/run_tests.sh] Change permission for script to 755Anisse Astier2017-02-161-0/+0
|
* [travis] Separate builds for core and downloadSergey M․2017-02-131-0/+19
|
* [devscripts/buildserver] Remove unreachable except blockChris Gavin2016-12-311-2/+0
|
* [devscripts/create-github-release] Fill release body from ChangeLog (closes ↵Sergey M․2016-11-182-5/+14
| | | | #11094)
* Update coding style after pycodestyle 2.1.0Yen Chi Hsuan2016-11-179-0/+9
| | | | | | | | | | In pycodestyle 2.1.0, E305 was introduced, which requires two blank lines after top level declarations, too. See https://github.com/PyCQA/pycodestyle/issues/400 See also #10689; thanks @stepshal for first mentioning this issue and initial patches
* Unify coding cookieDéstin Reed2016-10-031-1/+1
|
* [devscripts/release.sh] Add missing fiSergey M․2016-09-111-1/+1
|
* [devscripts/release.sh] Add ChangeLog reminder promptSergey M․2016-09-111-0/+3
|
* [devscripts/prepare_manpage] Fix description strings starting with dash ↵Sergey M․2016-08-091-11/+15
| | | | (Closes #10273)
* Add ChangeLogYen Chi Hsuan2016-07-301-1/+4
|
* [devscripts/show-downloads-statistics] Add support for pagingSergey M․2016-07-271-16/+22
|
* [travis] Skip downloading srelayYen Chi Hsuan2016-07-131-8/+0
| | | | | | SOCKS tests never run on Travis CI due to unknown reasons, and downloading them broke some tests (e.g. https://travis-ci.org/rg3/youtube-dl/builds/144306425)
* [devscripts/generate-download] Remove MD5 and SHA1Philipp Hagemeister2016-07-121-4/+0
|
* [devscripts/show-downloads-statictics] Add script for displaying downloads ↵Sergey M․2016-07-031-0/+41
| | | | statistics
* lazy-extractors: Fix after commit 6e6b9f600f2f447604f6108fb6486b73cc25def1Jaime Marquínez Ferrándiz2016-06-221-6/+41
| | | | | | | | | | | | | | | | | | The problem was in the following code: class ArteTVPlus7IE(ArteTVBaseIE): ... @classmethod def suitable(cls, url): return False if ArteTVPlaylistIE.suitable(url) else super(ArteTVPlus7IE, cls).suitable(url) And its sublcasses like ArteTVCinemaIE. Since in the lazy_extractors.py file ArteTVCinemaIE was not a subclass of ArteTVPlus7IE, super(ArteTVPlus7IE, cls) failed. To fix it we have to make it a subclass. Since the order of _ALL_CLASSES is arbitrary we must sort them so that the base classes are defined first. We also must add base classes like YoutubeBaseInfoExtractor.
* [devscripts/release.sh] Add flag for gpg-sign commitsSergey M․2016-06-141-2/+7
|
* [devscripts/create-github-release] Make full published releases by defaultSergey M․2016-06-061-3/+2
|
* [devscripts/release.sh] Release to GitHubSergey M․2016-06-051-4/+3
|
* [devscripts/create-github-release] Add script for releasing on GitHubSergey M․2016-06-051-0/+112
| | | | Yet only Basic authentication is supported either via .netrc or by manual input
* [devscripts/buildserver] Use compat_input from compatSergey M․2016-06-051-5/+1
|
* disable uploading to yt-dl.org for nowPhilipp Hagemeister2016-06-041-2/+4
|
* [devscripts/buildserver] Listen on all interfacesSergey M․2016-05-301-1/+1
|
* [devscripts/release.sh] Allow passing buildserver address as cli optionSergey M․2016-05-291-5/+23
|
* [devscripts/release.sh] Check for wheelSergey M․2016-05-291-1/+2
|
* [devscripts/buildserver] Check Wow6432Node first when searching for pythonSergey M․2016-05-291-7/+16
| | | | This allows building releases from 64bit OS
* [devscripts/prepare_manpage] Fix manpage generation on WindowsSergey M․2016-05-291-25/+36
|
* [buildserver] Fix buildserver and make python2 compatibleSergey M․2016-05-291-19/+43
|
* release.sh: also check for python3 rsa modulePhilipp Hagemeister2016-05-211-1/+2
|
* release: check for pandocPhilipp Hagemeister2016-05-211-0/+1
| | | | | Abort releaseing if pandoc is missing. (pandoc was not included in my essential app database, and thus missing on my new machine.)
* [test/test_socks] Test with local SOCKS serversYen Chi Hsuan2016-05-101-0/+8
|
* lazy extractors: Initialize the real info extractorJaime Marquínez Ferrándiz2016-04-081-2/+4
| | | | According to the docs '__init__' is only called automatically if '__new__' returns an instance of the original class.
* lazy extractors: Style fixesJaime Marquínez Ferrándiz2016-04-082-4/+3
| | | | | * Sort extractors alphabetically * Add newlines when needed (youtube_dl/extractors/lazy_extractors.py pass the flake8 test now)
* lazy extractors: Fix building with python2.6Jaime Marquínez Ferrándiz2016-04-081-3/+3
|
* lazy extractors: specify the encodingJaime Marquínez Ferrándiz2016-04-081-0/+1
| | | | When building with python3 the unicode characters are not escaped, python2 needs to know the encoding.