瀏覽代碼

Comment out 'PO' performance tests

jonathanvdc 8 年之前
父節點
當前提交
2a28f96dd1
共有 3 個文件被更改,包括 6 次插入6 次删除
  1. 2 2
      performance/test_fibonacci.py
  2. 2 2
      performance/test_matrix_create.py
  3. 2 2
      performance/test_matrix_gauss_jordan.py

+ 2 - 2
performance/test_fibonacci.py

@@ -3,8 +3,8 @@ import utils
 
 
 class TestFibonacci(unittest.TestCase):
-    def test_po_fibonacci(self):
-        self.fibonacci("PO")
+    # def test_po_fibonacci(self):
+    #     self.fibonacci("PO")
 
     def test_co_fibonacci(self):
         self.fibonacci("CO")

+ 2 - 2
performance/test_matrix_create.py

@@ -3,8 +3,8 @@ import utils
 
 
 class TestMatrixCreate(unittest.TestCase):
-    def test_po_matrix_create(self):
-        self.create_matrix("PO")
+    # def test_po_matrix_create(self):
+    #     self.create_matrix("PO")
 
     def test_co_matrix_create(self):
         self.create_matrix("CO")

+ 2 - 2
performance/test_matrix_gauss_jordan.py

@@ -3,8 +3,8 @@ import utils
 
 
 class TestMatrixGaussJordan(unittest.TestCase):
-    def test_po_matrix_gauss_jordan(self):
-        self.matrix_gauss_jordan("PO")
+    # def test_po_matrix_gauss_jordan(self):
+    #     self.matrix_gauss_jordan("PO")
 
     def test_co_matrix_gauss_jordan(self):
         self.matrix_gauss_jordan("CO")