From 2a60af9541e1e39164f5d218c062fdeae4dba96b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wiktor=20Niesiob=C4=99dzki?= Date: Fri, 20 Dec 2024 08:50:08 +0000 Subject: [PATCH] debugs, debugs, debugs --- .github/workflows/tests.yml | 2 -- tests/fixtures.py | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 16e74c8c96..f51a2e477e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -166,12 +166,10 @@ jobs: env: TERRAFORM: ${{ matrix.flavour }} run: - find / -type f -name tofu 2> /dev/null; echo which tofu; which tofu ; echo flavour -version; ${{ matrix.flavour }} -version ; - find / -type f -name tofu 2>/dev/null | xargs -n 1 ; pytest -vvvv -s --tb=long --junit-xml=test-results-raw.xml -k "modules/net-ipsec-over-interconnect:Single" tests/examples - name: Create report diff --git a/tests/fixtures.py b/tests/fixtures.py index 701e0a5c37..4c51779c9c 100644 --- a/tests/fixtures.py +++ b/tests/fixtures.py @@ -101,6 +101,7 @@ def plan_summary(module_path, basedir, tf_var_files=None, extra_files=None, module_path = _REPO_ROOT / module_path with _prepare_root_module(module_path) as test_path: binary = os.environ.get('TERRAFORM', 'terraform') + print(f"Terraform binary is: {binary}") tf = tftest.TerraformTest(test_path, binary=binary) extra_files = [(module_path / filename).resolve() for x in extra_files or []