Skip to content

Commit

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

0 comments on commit 23204ea

Please sign in to comment.