10 lines
178 B
Python
10 lines
178 B
Python
|
|
"""
|
||
|
|
Extension to the unittest package to support buildlogger and parallel
|
||
|
|
test execution.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from __future__ import absolute_import
|
||
|
|
|
||
|
|
from . import executor
|
||
|
|
from . import suite
|