tests: use dot to separate test name components
This way the name can be directly copied to cmdline to rerun that particular test.
This commit is contained in:
parent
e65842322a
commit
454788d459
@ -129,7 +129,7 @@ class QubesTestCase(unittest.TestCase):
|
|||||||
|
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return '{}/{}/{}'.format(
|
return '{}.{}.{}'.format(
|
||||||
'.'.join(self.__class__.__module__.split('.')[2:]),
|
'.'.join(self.__class__.__module__.split('.')[2:]),
|
||||||
self.__class__.__name__,
|
self.__class__.__name__,
|
||||||
self._testMethodName)
|
self._testMethodName)
|
||||||
|
Loading…
Reference in New Issue
Block a user