rollback tests multiprocess, Travis and OSX don't support it
This commit is contained in:
parent
4b618047ce
commit
fedb6816cd
3 changed files with 5 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -13,3 +13,5 @@ youtube-dl.bash-completion
|
||||||
youtube-dl
|
youtube-dl
|
||||||
youtube-dl.exe
|
youtube-dl.exe
|
||||||
youtube-dl.tar.gz
|
youtube-dl.tar.gz
|
||||||
|
.coverage
|
||||||
|
cover/
|
||||||
|
|
|
@ -3,7 +3,7 @@ python:
|
||||||
- "2.6"
|
- "2.6"
|
||||||
- "2.7"
|
- "2.7"
|
||||||
# - "3.3"
|
# - "3.3"
|
||||||
script: nosetests test --verbose --processes 4
|
script: nosetests test --verbose
|
||||||
notifications:
|
notifications:
|
||||||
email:
|
email:
|
||||||
- filippo.valsorda@gmail.com
|
- filippo.valsorda@gmail.com
|
||||||
|
|
3
Makefile
3
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
|
install -m 644 youtube-dl.bash-completion $(DESTDIR)$(SYSCONFDIR)/bash_completion.d/youtube-dl
|
||||||
|
|
||||||
test:
|
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
|
.PHONY: all clean install test
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue