Skip to content

Commit

Permalink
print test accounts during CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nafets227 committed Jun 22, 2024
1 parent 904cdcd commit 8c0b9ec
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/docker-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,24 @@ jobs:
DEBUGSH="set -x" &&
TESTPARM="--debug" &&
set -x
if [ -z "$HBCI_PINFILE" ] ; then
printf "Missing testdata. HBCI_PINFILE not set.\n"
exit 1
else
# dump testdata
while read line ; do
case $line in
PIN_* )
line=${line##PIN_}
line=${line%%=*}
u=${line#*_}
blz=${line%_*}
printf "Found Testdata for blz=%s u=%s\n" "$blz" "$u"
;;
esac
done <<<"$HBCI_PINFILE"
fi
cat >.hbci-pinfile <<<"$HBCI_PINFILE"
MYSQL_HOST=db
Expand Down

0 comments on commit 8c0b9ec

Please sign in to comment.