@@ -138,7 +138,6 @@ def test_parallel_calculation(self):
138138 arguments [i ][0 ]** 2 ,
139139 err_msg = "Unexpected results from ParallelCalculation" )
140140
141- @pytest .mark .skip (reason = 'test to see if it times out' )
142141 def test_rmsd_matrix_with_superimposition (self , ens1 ):
143142 conf_dist_matrix = encore .confdistmatrix .conformational_distance_matrix (
144143 ens1 ,
@@ -156,7 +155,6 @@ def test_rmsd_matrix_with_superimposition(self, ens1):
156155 for i , rmsd in enumerate (reference .results .rmsd ):
157156 assert_allclose (conf_dist_matrix [0 , i ], rmsd [2 ], rtol = 0 , atol = 1.5e-3 , err_msg = err_msg )
158157
159- @pytest .mark .skip (reason = 'test to see if it times out' )
160158 def test_rmsd_matrix_with_superimposition_custom_weights (self , ens1 ):
161159 conf_dist_matrix = encore .confdistmatrix .conformational_distance_matrix (
162160 ens1 ,
@@ -177,7 +175,6 @@ def test_rmsd_matrix_with_superimposition_custom_weights(self, ens1):
177175 for i in range (conf_dist_matrix_custom .size ):
178176 assert_allclose (conf_dist_matrix_custom [0 , i ], conf_dist_matrix [0 , i ], rtol = 0 , atol = 1.5e-7 )
179177
180- @pytest .mark .skip (reason = 'test to see if it times out' )
181178 def test_rmsd_matrix_without_superimposition (self , ens1 ):
182179 selection_string = "name CA"
183180 selection = ens1 .select_atoms (selection_string )
0 commit comments