فهرست منبع

Excluded verbose message printing from coverage.

Sander Mathijs van Veen 14 سال پیش
والد
کامیت
49ef7df0d0
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      src/rules/poly.py

+ 2 - 2
src/rules/poly.py

@@ -74,13 +74,13 @@ def match_combine_polynomes(node, verbose=False):
     #   (root, exponent, coefficient, literal_coefficient)
     #   (root, exponent, coefficient, literal_coefficient)
     polys = []
     polys = []
 
 
-    if verbose:
+    if verbose:  # pragma: nocover
         print 'match combine factors:', node
         print 'match combine factors:', node
 
 
     for n in node.get_scope():
     for n in node.get_scope():
         polynome = n.extract_polynome_properties()
         polynome = n.extract_polynome_properties()
 
 
-        if verbose:
+        if verbose:  # pragma: nocover
             print 'n:', n, 'polynome:', polynome
             print 'n:', n, 'polynome:', polynome
 
 
         if polynome:
         if polynome: