summaryrefslogtreecommitdiff
path: root/lib/tasks
diff options
context:
space:
mode:
authorrandx <dmitriy.zaporozhets@gmail.com>2012-06-17 18:40:00 +0300
committerrandx <dmitriy.zaporozhets@gmail.com>2012-06-17 18:40:00 +0300
commit60db88ad347a40a95d3004c69c3f00e215f8472c (patch)
tree56414bc805e2d898bc1ed6d1bf0ef6059f3b97c2 /lib/tasks
parentcd3f55a310546151a82ac48abcfcdc8da2740b7e (diff)
downloadgitlab-ce-60db88ad347a40a95d3004c69c3f00e215f8472c.tar.gz
Lets change how cucumber run on travis
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/travis.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/travis.rake b/lib/tasks/travis.rake
index c0b63194a77..58767e10611 100644
--- a/lib/tasks/travis.rake
+++ b/lib/tasks/travis.rake
@@ -1,5 +1,5 @@
task :travis do
- ["bundle exec rake cucumber", "bundle exec rspec spec"].each do |cmd|
+ ["cucumber", "rspec spec"].each do |cmd|
puts "Starting to run #{cmd}..."
system("export DISPLAY=:99.0 && bundle exec #{cmd}")
raise "#{cmd} failed!" unless $?.exitstatus == 0