예제 #1
0
 def test_ystats_format(self):
     requires_yappi()
     profile.start()
     profile.is_running()  # Let if profile something
     profile.stop()
     stats = yappi.YFuncStats()
     stats.add(FILENAME)
예제 #2
0
 def test_is_running(self):
     requires_yappi()
     self.assertFalse(profile.is_running())
     profile.start()
     try:
         self.assertTrue(profile.is_running())
     finally:
         profile.stop()
     self.assertFalse(profile.is_running())
예제 #3
0
 def test_is_running(self):
     requires_yappi()
     self.assertFalse(profile.is_running())
     profile.start()
     try:
         self.assertTrue(profile.is_running())
     finally:
         profile.stop()
     self.assertFalse(profile.is_running())
예제 #4
0
 def test_ystats_format(self):
     requires_yappi()
     profile.start()
     profile.is_running()  # Let if profile something
     profile.stop()
     self.assertNotRaises(open_ystats, FILENAME)
예제 #5
0
 def profiled_function(self):
     self.assertTrue(profile.is_running())
예제 #6
0
 def test_disabled(self):
     profile.start()
     try:
         self.assertFalse(profile.is_running())
     finally:
         profile.stop()
예제 #7
0
 def test_ystats_format(self):
     requires_yappi()
     profile.start()
     profile.is_running()  # Let if profile something
     profile.stop()
     self.assertNotRaises(open_ystats, FILENAME)
예제 #8
0
 def profiled_function(self):
     self.assertTrue(profile.is_running())
예제 #9
0
 def test_disabled(self):
     profile.start()
     try:
         self.assertFalse(profile.is_running())
     finally:
         profile.stop()
예제 #10
0
 def test_pstats_format(self):
     requires_yappi()
     profile.start()
     profile.is_running()  # Let if profile something
     profile.stop()
     pstats.Stats(FILENAME)