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 []