Skip to content

Commit

Permalink
debugs, debugs, debugs
Browse files Browse the repository at this point in the history
  • Loading branch information
wiktorn committed Dec 20, 2024
1 parent 23204ea commit 2a60af9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions tests/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 []
Expand Down

0 comments on commit 2a60af9

Please sign in to comment.