Skip to content

Commit

Permalink
Isolated strategy for Jenkins as well
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Čihař <michal@cihar.com>
  • Loading branch information
nijel committed Apr 22, 2014
1 parent 6daf077 commit 617aaf4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/selenium/TestBase.php
Expand Up @@ -58,6 +58,7 @@ public static function browsers()
$build_id = 'Manual';
if (getenv('BUILD_TAG')) {
$build_id = getenv('BUILD_TAG');
$strategy = 'isolated';
} elseif (getenv('TRAVIS_JOB_NUMBER')) {
$build_id = 'travis-' . getenv('TRAVIS_JOB_NUMBER');
$build_local = true;
Expand All @@ -67,7 +68,7 @@ public static function browsers()
$capabilities = array(
'browserstack.user' => $GLOBALS['TESTSUITE_BROWSERSTACK_USER'],
'browserstack.key' => $GLOBALS['TESTSUITE_BROWSERSTACK_KEY'],
'browserstack.debug' => true,
'browserstack.debug' => false,
'project' => 'phpMyAdmin',
'build' => $build_id,
);
Expand Down

0 comments on commit 617aaf4

Please sign in to comment.