Browse Source

Makefile:coverage2: Use the ``coverage`` module for coverage instead of
figleaf

Ask Solem 15 năm trước cách đây
mục cha
commit
996cddfb93
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  1. 4 0
      Makefile

+ 4 - 0
Makefile

@@ -17,6 +17,10 @@ coverage:
 	[ -d testproj/temp ] || mkdir -p testproj/temp
 	(cd testproj; python manage.py test --figleaf)
 
+coverage2:
+	[ -d testproj/temp ] || mkdir -p testproj/temp
+	(cd testproj; python manage.py test --coverage)
+
 test:
 	(cd testproj; python manage.py test)