@@ -23,6 +23,7 @@ class TestNetPyNEModelInterpreter(unittest.TestCase):
2323
2424 @classmethod
2525 def setUpClass (cls ):
26+ print ("== Setting up: TestNetPyNEModelInterpreter" )
2627 HERE = os .path .dirname (os .path .realpath (__file__ ))
2728 ROOT = os .path .dirname (HERE )
2829 cls .path = NETPYNE_WORKDIR_PATH
@@ -38,6 +39,7 @@ def setUpClass(cls):
3839 logging .error ("Error loading mechanisms" , exc_info = True )
3940
4041 def getGeppettoModel (self , netParams , simConfig ):
42+ print ("== getGeppettoModel" )
4143 sim .create (netParams , simConfig , True )
4244 sim .gatherData ()
4345
@@ -46,6 +48,7 @@ def getGeppettoModel(self, netParams, simConfig):
4648 sim .analyze ()
4749
4850 def test_getGeppettoModelSimpleNetwork (self ):
51+ print ("== test_getGeppettoModelSimpleNetwork" )
4952 # object of class NetParams to store the network parameters
5053 netParams = specs .NetParams ()
5154 # object of class SimConfig to store the simulation configuration
@@ -88,6 +91,7 @@ def test_tut1(self):
8891 from gui_tut1 import netParams , simConfig
8992 self .getGeppettoModel (netParams , simConfig )
9093
94+ '''
9195 # @unittest.skip("Neuron restart kernel issue")
9296 def test_tut2(self):
9397 print("------------------------------------")
@@ -135,7 +139,7 @@ def test_Hnn(self):
135139 print("------------------------------------")
136140
137141 from hnn_simple import netParams, cfg
138- self .getGeppettoModel (netParams , cfg )
142+ self.getGeppettoModel(netParams, cfg) '''
139143
140144
141145if __name__ == '__main__' :
0 commit comments