Skip to content

Commit 8f950b0

Browse files
committed
Debug PWD
1 parent ebd76e3 commit 8f950b0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

test/test-helper.bash

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,5 +167,11 @@ _skip_manual_test() {
167167
}
168168

169169
_skip_if_github_action() {
170-
[[ "${PWD}" != *"/runner/work/"* ]] || skip "$@"
170+
echo "Debug PWD: ${PWD}"
171+
if [[ "${PWD}" != *"/runner/work/"* ]]; then
172+
echo "NOT SKIPPING"
173+
else
174+
echo "SKIPPING"
175+
skip "$@"
176+
fi
171177
}

0 commit comments

Comments
 (0)