diff --git a/haas/tests/test_haas_application.py b/haas/tests/test_haas_application.py index 036d987..44f6d81 100644 --- a/haas/tests/test_haas_application.py +++ b/haas/tests/test_haas_application.py @@ -25,7 +25,7 @@ from ..plugins.discoverer import Discoverer from ..suite import TestSuite from ..testing import unittest -from ..utils import cd +from ..utils import cd, configure_logging from .compat import mock from . import builder @@ -356,6 +356,7 @@ def test_cause_failure(self1): @with_patched_test_runner def test_multiple_start_directories(self, runner_class, result_class, plugin_manager): + configure_logging('debug') # Given module = builder.Module( 'test_something.py', @@ -382,6 +383,11 @@ def test_multiple_start_directories(self, runner_class, result_class, top_level = os.path.join(tempdir, fixture.name) + for root, dirs, files in os.walk(tempdir): + dirs[:] = sorted(dirs) + for item in sorted(files): + print(os.path.join(root, item), flush=True) + # When with cd(top_level): run, result = self._run_with_arguments(