diff --git a/tests/test_deploy b/tests/test_deploy index 2ccc28ffa..a200adb16 100755 --- a/tests/test_deploy +++ b/tests/test_deploy @@ -6,6 +6,8 @@ trap "rm -rf $TMP" EXIT cp -r $(dirname $SELF)/$APP/* $TMP cd $TMP git init +git config user.email "robot@example.com" +git config user.name "Test Robot" git add . git commit -m 'initial commit' REPO="test-$RANDOM"