diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 31c66a63c6..16e74c8c96 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -166,10 +166,12 @@ jobs: env: TERRAFORM: ${{ matrix.flavour }} run: - find / -type f -name tofu ; + find / -type f -name tofu 2> /dev/null; + echo which tofu; which tofu ; + echo flavour -version; ${{ matrix.flavour }} -version ; - find / -type f -name tofu | xargs -n 1 ; + 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