Browse Source

Make coverage ignore errors

It seems to get confused by .pyc files.

The project author sanctions this work-around:
http://stackoverflow.com/questions/2386975/no-source-for-code-message-in-coverage-py
master
David Winterbottom 13 years ago
parent
commit
fe13e4a080
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Makefile

+ 1
- 1
Makefile View File

@@ -33,7 +33,7 @@ test:
33 33
 ci: install lint
34 34
 	# Run continous tests and generate lint reports
35 35
 	./runtests.py --with-coverage --with-xunit
36
-	coverage xml
36
+	coverage xml -i
37 37
 
38 38
 lint:
39 39
 	./lint.sh

Loading…
Cancel
Save