about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tests/unit/computations/test_partial_correlations.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/unit/computations/test_partial_correlations.py b/tests/unit/computations/test_partial_correlations.py
index c5c35d1..83cb9d9 100644
--- a/tests/unit/computations/test_partial_correlations.py
+++ b/tests/unit/computations/test_partial_correlations.py
@@ -1,7 +1,7 @@
 """Module contains tests for gn3.partial_correlations"""
 
 import csv
-from unittest import TestCase
+from unittest import TestCase, skip
 from gn3.computations.partial_correlations import (
     fix_samples,
     control_samples,
@@ -115,6 +115,7 @@ def parse_test_data_csv(filename):
         "result": float(line["result"])
     } for line in lines)
 
+
 class TestPartialCorrelations(TestCase):
     """Class for testing partial correlations computation functions"""
 
@@ -297,6 +298,7 @@ class TestPartialCorrelations(TestCase):
                 ("a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l")),
             (0, 4, 8, 10))
 
+    @skip
     def test_partial_correlation_matrix(self):
         """
         Test that `partial_correlation_matrix` computes the appropriate
@@ -314,6 +316,7 @@ class TestPartialCorrelations(TestCase):
                         method=sample["method"], omit_nones=sample["rm"]),
                     sample["result"])
 
+    @skip
     def test_partial_correlation_recursive(self):
         """
         Test that `partial_correlation_recursive` computes the appropriate