Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2015-07-07 15:35:47 +0300
committermattab <matthieu.aubry@gmail.com>2015-07-07 15:45:33 +0300
commit216e0b5ca53416c80c78e7f6dd497e09a7fcf4ce (patch)
treee83fb472d0bb2427c71475e32645ffcf1c80f034 /plugins/TestRunner
parent233a028983647de92f670239c2a39c9076b040d9 (diff)
Minor: prefixed commit message when pushing UI tests fixes
Diffstat (limited to 'plugins/TestRunner')
-rw-r--r--plugins/TestRunner/Commands/SyncScreenshots.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TestRunner/Commands/SyncScreenshots.php b/plugins/TestRunner/Commands/SyncScreenshots.php
index 3c1b4c1afb..299bc7e726 100644
--- a/plugins/TestRunner/Commands/SyncScreenshots.php
+++ b/plugins/TestRunner/Commands/SyncScreenshots.php
@@ -109,7 +109,7 @@ git pull
git add .
git status
sleep 5
-git commit -m '' # Write a good commit message, eg. 'Fixed UI test failure caused by change introduced in <core or plugin commit> which caused failure by <explanation of failure>'
+git commit -m 'UI tests: ...' # Write a good commit message, eg. 'Fixed UI test failure caused by change introduced in <core or plugin commit> which caused failure by <explanation of failure>'
git push";
if(empty($plugin)) {
@@ -118,7 +118,7 @@ cd ..
git pull
git add expected-ui-screenshots/
git status
-git commit -m '' # Copy paste the good commit message
+git commit -m 'UI tests: ...' # Copy paste the good commit message
git push
cd ../../";
} else {