Commit 492fd0cf authored by Stefan Behnel's avatar Stefan Behnel

In test runner, change "compiling test" back to "compiling and running test"...

In test runner, change "compiling test" back to "compiling and running test" when executing a runnable test, which was accidentally lost before.
parent 6bec10e5
......@@ -870,7 +870,7 @@ class CythonCompileTestCase(unittest.TestCase):
self.language,
"/cy2" if self.language_level == 2 else "/cy3" if self.language_level == 3 else "",
"/pythran" if self.pythran_dir is not None else "",
self.name
self.description_name()
)
def description_name(self):
......@@ -1493,7 +1493,7 @@ class PartialTestResult(_TextTestResult):
class CythonUnitTestCase(CythonRunTestCase):
def shortDescription(self):
return "compiling (%s) tests in %s" % (self.language, self.name)
return "compiling (%s) tests in %s" % (self.language, self.description_name())
def run_tests(self, result, ext_so_path):
with self.stats.time(self.name, self.language, 'import'):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment