diff --git a/.git-hooks/pre-push b/.git-hooks/pre-push index 2c0dbdc27..1e9795cfc 100755 --- a/.git-hooks/pre-push +++ b/.git-hooks/pre-push @@ -12,8 +12,11 @@ echo "$JAVA_HOME" echo "$(java -version)" echo "Running test... " -./gradlew test --quiet - +if [ "${CLAUDE_CODE_REMOTE:-}" = "true" ]; then + ./gradlew test --quiet -x :desktopApp:test -x :desktopApp:upxDownload -x :desktopApp:vlcDownload +else + ./gradlew test --quiet +fi status=$? if [ "$status" = 0 ] ; then