PyUnit/UnittestDialog.py

changeset 3038
7fe9a53280bd
parent 3030
4a0a82ddd9d2
child 3060
5883ce99ee12
child 3160
209a07d7e401
--- a/PyUnit/UnittestDialog.py	Sat Oct 19 16:14:07 2013 +0200
+++ b/PyUnit/UnittestDialog.py	Sat Oct 19 16:51:12 2013 +0200
@@ -219,7 +219,7 @@
             flags = Utilities.extractFlagsFromFile(txt)
             if txt.endswith(exts) or \
                ("FileType" in flags and
-                flags["FileType"] in ["Python", "Python2"]):
+                    flags["FileType"] in ["Python", "Python2"]):
                 self.coverageCheckBox.setChecked(False)
                 self.coverageCheckBox.setEnabled(False)
                 self.localCheckBox.setChecked(False)
@@ -286,7 +286,7 @@
                 if mainScript.endswith(
                     tuple(Preferences.getPython("PythonExtensions"))) or \
                    ("FileType" in flags and
-                    flags["FileType"] in ["Python", "Python2"]):
+                        flags["FileType"] in ["Python", "Python2"]):
                     clientType = "Python2"
                 else:
                     clientType = ""
@@ -335,8 +335,8 @@
                     self.trUtf8(
                         "<p>Unable to run test <b>{0}</b>.<br>"
                         "{1}<br>{2}</p>")
-                        .format(self.testName, str(exc_type),
-                                str(exc_value)))
+                    .format(self.testName, str(exc_type),
+                            str(exc_value)))
                 return
                 
             # now set up the coverage stuff
@@ -356,7 +356,7 @@
                 from DebugClients.Python3.coverage import coverage
                 cover = coverage(
                     data_file="{0}.coverage".format(
-                    os.path.splitext(mainScript)[0]))
+                        os.path.splitext(mainScript)[0]))
                 cover.use_cache(True)
                 if self.coverageEraseCheckBox.isChecked():
                     cover.erase()
@@ -393,7 +393,7 @@
                 self.trUtf8("Unittest"),
                 self.trUtf8(
                     "<p>Unable to run test <b>{0}</b>.<br>{1}<br>{2}</p>")
-                    .format(self.testName, exc_type, exc_value))
+                .format(self.testName, exc_type, exc_value))
             return
             
         self.totalTests = nrTests

eric ide

mercurial