From f38ba3cafcc838b81d45238603089340e016d353 Mon Sep 17 00:00:00 2001 From: Daniel Watkins Date: Fri, 18 Dec 2020 12:13:25 -0500 Subject: integration_tests: log the path we collect logs into (#733) This makes it easier to find the failure logs when you're running a bunch of similar tests in parallel. --- tests/integration_tests/conftest.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/integration_tests') diff --git a/tests/integration_tests/conftest.py b/tests/integration_tests/conftest.py index 2d12045c..68d506bd 100644 --- a/tests/integration_tests/conftest.py +++ b/tests/integration_tests/conftest.py @@ -174,6 +174,7 @@ def _collect_logs(instance: IntegrationInstance, node_id: str, log_dir = Path( integration_settings.LOCAL_LOG_PATH ) / session_start_time / node_id_path + log.info("Writing logs to %s", log_dir) if not log_dir.exists(): log_dir.mkdir(parents=True) tarball_path = log_dir / 'cloud-init.tar.gz' -- cgit v1.2.3