youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit fedb6816cd045b4a0a12b7cd1a51a1712abde874
parent 4b618047cee2250f141fb58dbfbc20be892c8035
Author: Filippo Valsorda <filippo.valsorda@gmail.com>
Date:   Tue, 11 Dec 2012 20:07:35 +0100

rollback tests multiprocess, Travis and OSX don't support it

Diffstat:
M.gitignore | 2++
M.travis.yml | 2+-
MMakefile | 3++-
3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -13,3 +13,5 @@ youtube-dl.bash-completion youtube-dl youtube-dl.exe youtube-dl.tar.gz +.coverage +cover/ diff --git a/.travis.yml b/.travis.yml @@ -3,7 +3,7 @@ python: - "2.6" - "2.7" # - "3.3" -script: nosetests test --verbose --processes 4 +script: nosetests test --verbose notifications: email: - filippo.valsorda@gmail.com diff --git a/Makefile b/Makefile @@ -17,7 +17,8 @@ install: youtube-dl youtube-dl.1 youtube-dl.bash-completion install -m 644 youtube-dl.bash-completion $(DESTDIR)$(SYSCONFDIR)/bash_completion.d/youtube-dl test: - nosetests2 --nocapture test + #nosetests --with-coverage --cover-package=youtube_dl --cover-html --verbose --processes 4 test + nosetests --verbose test .PHONY: all clean install test