From 5bf7e0fcc0abc6cc0801ccb4c846c54a8fdcf04a Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen <balloob@gmail.com> Date: Sun, 5 Apr 2020 03:15:29 -0700 Subject: [PATCH] List dir when test fails (#33685) --- tests/components/tts/conftest.py | 18 ++++++++++++++++++ tests/components/tts/test_init.py | 15 +++++++++++++-- 2 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 tests/components/tts/conftest.py diff --git a/tests/components/tts/conftest.py b/tests/components/tts/conftest.py new file mode 100644 index 00000000000..7f5b06b71ee --- /dev/null +++ b/tests/components/tts/conftest.py @@ -0,0 +1,18 @@ +"""Conftest for TTS tests. + +From http://doc.pytest.org/en/latest/example/simple.html#making-test-result-information-available-in-fixtures +""" + +import pytest + + +@pytest.hookimpl(tryfirst=True, hookwrapper=True) +def pytest_runtest_makereport(item, call): + """Add test report to node.""" + # execute all other hooks to obtain the report object + outcome = yield + rep = outcome.get_result() + + # set a report attribute for each phase of a call, which can + # be "setup", "call", "teardown" + setattr(item, "rep_" + rep.when, rep) diff --git a/tests/components/tts/test_init.py b/tests/components/tts/test_init.py index a52deebbcaa..803d3d6f1db 100644 --- a/tests/components/tts/test_init.py +++ b/tests/components/tts/test_init.py @@ -52,7 +52,7 @@ def mock_init_cache_dir(): @pytest.fixture -def empty_cache_dir(tmp_path, mock_init_cache_dir, mock_get_cache_files): +def empty_cache_dir(tmp_path, mock_init_cache_dir, mock_get_cache_files, request): """Mock the TTS cache dir with empty dir.""" mock_init_cache_dir.side_effect = None mock_init_cache_dir.return_value = str(tmp_path) @@ -60,7 +60,18 @@ def empty_cache_dir(tmp_path, mock_init_cache_dir, mock_get_cache_files): # Restore original get cache files behavior, we're working with a real dir. mock_get_cache_files.side_effect = _get_cache_files - return tmp_path + yield tmp_path + + if request.node.rep_call.passed: + return + + # Print contents of dir if failed + print("Content of dir for", request.node.nodeid) + for fil in tmp_path.iterdir(): + print(fil.relative_to(tmp_path)) + + # To show the log. + assert False @pytest.fixture(autouse=True) -- GitLab