Skip to content

Commit

Permalink
[rb] better formatting for update rake task
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Oct 31, 2023
1 parent 26e7d27 commit defda09
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions rb/Rakefile
Expand Up @@ -4,8 +4,14 @@ require 'rspec/core/rake_task'

desc 'Setup everything to run tests in RubyMine'
task :update do
system 'bazel build @bundle//:bundle //rb:selenium-devtools //rb:selenium-webdriver'
system 'bazel build //java/src/org/openqa/selenium/grid:executable-grid'
cmd = [
'bazel build @bundle//:bundle',
'//rb:selenium-devtools',
'//rb:selenium-webdriver',
'//java/src/org/openqa/selenium/grid:executable-grid'
].join(' ')

system cmd
end

desc 'Run unit tests'
Expand Down

0 comments on commit defda09

Please sign in to comment.