From b7c463077c4829f8a18e597f1597baa46578fbf9 Mon Sep 17 00:00:00 2001 From: Chad Smith Date: Thu, 18 Nov 2021 14:53:18 -0700 Subject: [PATCH] tests: use /var/tmp instead of /tmp to avoid travis failures /tmp is not guaranteed to be stable during early system boot. It is better to use /var/tmp as /tmp may be remounted during early boot and lead to spurrious build failures. This issue is related to LP: #1707222. --- tests/integration_tests/integration_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_tests/integration_settings.py b/tests/integration_tests/integration_settings.py index e4a790c212e..b40e05f464e 100644 --- a/tests/integration_tests/integration_settings.py +++ b/tests/integration_tests/integration_settings.py @@ -76,7 +76,7 @@ # 'ON_ERROR' # 'NEVER' COLLECT_LOGS = 'ON_ERROR' -LOCAL_LOG_PATH = '/tmp/cloud_init_test_logs' +LOCAL_LOG_PATH = '/var/tmp/cloud_init_test_logs' ################################################################## # SSH KEY SETTINGS