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:
authordiosmosis <benakamoorthi@fastmail.fm>2014-08-11 14:06:31 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-08-11 14:06:31 +0400
commit002acc297693ebbd367547c787477e394f13f05a (patch)
tree4f41a62dd1f215cfa673db909e8040115752680e /plugins
parent2ae0e7192aa1cb3218824ddc8cadbd6335b6dda3 (diff)
Exclude PHP 5.3.3 builds correctly for plugins when generating plugin .travis.yml files.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/CoreConsole/TravisYmlView.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CoreConsole/TravisYmlView.php b/plugins/CoreConsole/TravisYmlView.php
index c1d0438862..a50c290d89 100644
--- a/plugins/CoreConsole/TravisYmlView.php
+++ b/plugins/CoreConsole/TravisYmlView.php
@@ -187,7 +187,7 @@ class TravisYmlView extends View
'vars' => "MYSQL_ADAPTER=PDO_MYSQL TEST_AGAINST_CORE=latest_stable");
$testsToExclude[] = array('description' => 'execute latest stable tests only w/ PHP 5.5',
- 'php' => '5.3',
+ 'php' => '5.3.3',
'env' => 'TEST_SUITE=PluginTests MYSQL_ADAPTER=PDO_MYSQL TEST_AGAINST_CORE=latest_stable');
$testsToExclude[] = array('php' => '5.4',
'env' => 'TEST_SUITE=PluginTests MYSQL_ADAPTER=PDO_MYSQL TEST_AGAINST_CORE=latest_stable');
@@ -197,7 +197,7 @@ class TravisYmlView extends View
'vars' => "MYSQL_ADAPTER=PDO_MYSQL");
$testsToExclude[] = array('description' => 'execute UI tests only w/ PHP 5.5',
- 'php' => '5.3',
+ 'php' => '5.3.3',
'env' => 'TEST_SUITE=UITests MYSQL_ADAPTER=PDO_MYSQL');
$testsToExclude[] = array('php' => '5.4',
'env' => 'TEST_SUITE=UITests MYSQL_ADAPTER=PDO_MYSQL');