From dfe9ded1e481ef6aea0d3df0c4d12df1cb1f1a4d Mon Sep 17 00:00:00 2001 From: Vincent Jacques Date: Sat, 3 Mar 2012 10:30:38 +0000 Subject: [PATCH] Coverage --- NewIntegrationTest.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/NewIntegrationTest.py b/NewIntegrationTest.py index 1fc3d429..3f803db0 100644 --- a/NewIntegrationTest.py +++ b/NewIntegrationTest.py @@ -8,8 +8,6 @@ import base64 from github import Github -### @todo From ReplayDataForIntegrationTest.*.txt files and ReferenceOfApis.md, build a coverage of the API by the integration test - class RecordReplayException( Exception ): pass @@ -101,7 +99,8 @@ class IntegrationTest: tests = argv self.runTests( tests, record ) - self.analyseCoverage() + if not record: + self.analyseCoverage() def prepareRecord( self, test ): self.avoidError500FromGithub = lambda: time.sleep( 1 )