about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--.travis.yml2
-rw-r--r--Makefile3
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
diff --git a/Makefile b/Makefile
index c97d6ffb0..426acd357 100644
--- 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