Commit f13d47a 1 parent fb13dc8 commit f13d47a Copy full SHA for f13d47a
File tree 2 files changed +11
-6
lines changed
2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -627,7 +627,9 @@ def __init__(self, mesh):
627
627
_ScipyIdentityMatrix .__init__ (self , size = mesh .numberOfCells )
628
628
629
629
def _test ():
630
+ print ('in scipyMatrix.py _test' )
630
631
import fipy .tests .doctestPlus
632
+ print ('fipy.tests.doctestPlus.__path__:' , fipy .tests .doctestPlus .__path__ )
631
633
return fipy .tests .doctestPlus .testmod ()
632
634
633
635
if __name__ == "__main__" :
Original file line number Diff line number Diff line change 8
8
import warnings
9
9
import sys
10
10
11
+ print ('imported test.py' )
12
+
11
13
__all__ = ["DeprecationErroringTestProgram" , "test" ]
12
14
__all__ = [text_to_native_str (n ) for n in __all__ ]
13
15
@@ -172,6 +174,7 @@ def printPackageInfo(self):
172
174
print ()
173
175
174
176
def run_tests (self ):
177
+ print ('run_tests 0' )
175
178
import sys
176
179
if self .Trilinos or self .trilinos or self .no_pysparse :
177
180
try :
@@ -188,7 +191,7 @@ def run_tests(self):
188
191
except ImportError as a :
189
192
print ("!!! Trilinos library is not installed" , file = sys .stderr )
190
193
return
191
-
194
+ print ( 'run_tests 1' )
192
195
if self .pyamgx :
193
196
try :
194
197
## Unregister the function pyamgx.finalize
@@ -209,24 +212,24 @@ def run_tests(self):
209
212
except ImportError as e :
210
213
print ("!!! pyamgx package is not installed" , file = sys .stederr )
211
214
return
212
-
215
+ print ( 'run_tests 2' )
213
216
if self .inline :
214
217
try :
215
218
import weave
216
219
except ImportError as a :
217
220
print ("!!! weave library is not installed" , file = sys .stderr )
218
221
return
219
-
222
+ print ( 'run_tests 3' )
220
223
if self .pythoncompiled is not None :
221
224
import os
222
225
os .environ ['PYTHONCOMPILED' ] = self .pythoncompiled
223
-
226
+ print ( 'run_tests 4' )
224
227
self .printPackageInfo ()
225
-
228
+ print ( 'run_tests 5' )
226
229
from pkg_resources import EntryPoint
227
230
loader_ep = EntryPoint .parse ("x=" + self .test_loader )
228
231
loader_class = loader_ep .load (require = False )
229
-
232
+ print ( 'run_tests 6' )
230
233
from fipy .tools import numerix
231
234
232
235
import sys
You can’t perform that action at this time.
0 commit comments