1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-13 21:07:38 +08:00

fixes install target, fixes python-2.6 README.md target, invokes make test

This commit is contained in:
Your Name 2014-10-03 12:14:00 -04:00 committed by rubicks
parent 9bbec55255
commit 79c3fd08b2
2 changed files with 17 additions and 2 deletions

View File

@ -4,7 +4,22 @@ python:
- "2.7" - "2.7"
- "3.3" - "3.3"
- "3.4" - "3.4"
script: nosetests test --verbose
before_install:
- uname -a
- lsb_release --all
install:
- sudo apt-get --assume-yes install pandoc
script:
- make clean
- make
- make test
- sudo make install
- which youtube-dl
- youtube-dl --version
notifications: notifications:
email: email:
- filippo.valsorda@gmail.com - filippo.valsorda@gmail.com

View File

@ -54,7 +54,7 @@ youtube-dl: youtube_dl/*.py youtube_dl/*/*.py
chmod a+x youtube-dl chmod a+x youtube-dl
README.md: youtube_dl/*.py youtube_dl/*/*.py README.md: youtube_dl/*.py youtube_dl/*/*.py
COLUMNS=80 python -m youtube_dl --help | python devscripts/make_readme.py COLUMNS=80 python -m youtube_dl.__main__ --help | python devscripts/make_readme.py
README.txt: README.md README.txt: README.md
pandoc -f markdown -t plain README.md -o README.txt pandoc -f markdown -t plain README.md -o README.txt