From 8de71d41e4a7dc1a8cff73341a27985a3fb576f0 Mon Sep 17 00:00:00 2001 From: Sarah Mei Date: Sat, 28 May 2011 22:22:06 -0700 Subject: [PATCH] Don't need to export the selenium server port anymore on CI. Yay! --- lib/tasks/cruise.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/cruise.rake b/lib/tasks/cruise.rake index 5821c28b9..484f68afd 100644 --- a/lib/tasks/cruise.rake +++ b/lib/tasks/cruise.rake @@ -4,7 +4,7 @@ namespace :cruise do puts "Starting virtual display..." `sh -e /etc/init.d/xvfb start` puts "Starting specs..." - system('export DISPLAY=:99.0 && export SELENIUM_SERVER_PORT=53809 && bundle exec rake') + system('export DISPLAY=:99.0 && bundle exec rake') exit_status = $?.exitstatus puts "Stopping virtual display..." `sh -e /etc/init.d/xvfb stop`