Skip to content

Commit

Permalink
Merge pull request joomla#122 from yvesh/fixEnv
Browse files Browse the repository at this point in the history
Fix in the RoboFile in the env parameter
  • Loading branch information
astridx committed Jan 13, 2017
2 parents 18b0fff + 6320846 commit f96fbd9
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions RoboFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ public function runTests($opts = ['use-htaccess' => false, 'env' => 'desktop'])
->arg('--steps')
->arg('--debug')
->arg('--fail-fast')
->arg('--env ' . $opts['env'])
->env($opts['env'])
->arg($this->testsPath . 'acceptance/install/')
->run()
->stopOnFail();
Expand All @@ -340,7 +340,7 @@ public function runTests($opts = ['use-htaccess' => false, 'env' => 'desktop'])
->arg('--steps')
->arg('--debug')
->arg('--fail-fast')
->arg('--env ' . $opts['env'])
->env($opts['env'])
->arg($this->testsPath . 'acceptance/content.feature')
->run()
->stopOnFail();
Expand All @@ -349,7 +349,7 @@ public function runTests($opts = ['use-htaccess' => false, 'env' => 'desktop'])
->arg('--steps')
->arg('--debug')
->arg('--fail-fast')
->arg('--env ' . $opts['env'])
->env($opts['env'])
->arg($this->testsPath . 'acceptance/users.feature')
->run()
->stopOnFail();
Expand All @@ -358,7 +358,7 @@ public function runTests($opts = ['use-htaccess' => false, 'env' => 'desktop'])
->arg('--steps')
->arg('--debug')
->arg('--fail-fast')
->arg('--env ' . $opts['env'])
->env($opts['env'])
->arg($this->testsPath . 'acceptance/users_frontend.feature')
->run()
->stopOnFail();
Expand All @@ -367,7 +367,7 @@ public function runTests($opts = ['use-htaccess' => false, 'env' => 'desktop'])
->arg('--steps')
->arg('--debug')
->arg('--fail-fast')
->arg('--env ' . $opts['env'])
->env($opts['env'])
->arg($this->testsPath . 'acceptance/banner.feature')
->run()
->stopOnFail();
Expand All @@ -376,7 +376,7 @@ public function runTests($opts = ['use-htaccess' => false, 'env' => 'desktop'])
->arg('--steps')
->arg('--debug')
->arg('--fail-fast')
->arg('--env ' . $opts['env'])
->env($opts['env'])
->arg($this->testsPath . 'acceptance/extensions.feature')
->run()
->stopOnFail();
Expand All @@ -385,7 +385,7 @@ public function runTests($opts = ['use-htaccess' => false, 'env' => 'desktop'])
->arg('--steps')
->arg('--debug')
->arg('--fail-fast')
->arg('--env ' . $opts['env'])
->env($opts['env'])
->arg($this->testsPath . 'acceptance/category.feature')
->run()
->stopOnFail();
Expand All @@ -394,7 +394,7 @@ public function runTests($opts = ['use-htaccess' => false, 'env' => 'desktop'])
->arg('--steps')
->arg('--debug')
->arg('--fail-fast')
->arg('--env ' . $opts['env'])
->env($opts['env'])
->arg($this->testsPath . 'acceptance/administrator/')
->run()
->stopOnFail();
Expand All @@ -403,7 +403,7 @@ public function runTests($opts = ['use-htaccess' => false, 'env' => 'desktop'])
->arg('--steps')
->arg('--debug')
->arg('--fail-fast')
->arg('--env ' . $opts['env'])
->env($opts['env'])
->arg($this->testsPath . 'acceptance/frontend/')
->run()
->stopOnFail();
Expand Down

0 comments on commit f96fbd9

Please sign in to comment.