diff options
author | Filippo Valsorda <filippo.valsorda@gmail.com> | 2012-12-11 20:07:35 +0100 |
---|---|---|
committer | Filippo Valsorda <filippo.valsorda@gmail.com> | 2012-12-11 20:07:35 +0100 |
commit | fedb6816cd045b4a0a12b7cd1a51a1712abde874 (patch) | |
tree | 871fe300612584d787d3b5f729b0367d038ca714 | |
parent | 4b618047cee2250f141fb58dbfbc20be892c8035 (diff) |
rollback tests multiprocess, Travis and OSX don't support it
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | Makefile | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index 996489d8e..a4204620b 100644 --- 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 index f4c2095d2..1e9b43e16 100644 --- 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 @@ -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 |