Sha256: 3735cfb55add1a18735473fc9c33438525939243db75b8ede94a2a47b1246224

Contents?: true

Size: 1.05 KB

Versions: 6

Compression:

Stored size: 1.05 KB

Contents

require 'rubygems'
require 'rake'

task :default => :ios

# Run sh and ignore exception
def run_sh cmd
  begin
    sh cmd
  rescue
  end
end

# Run cmd. On failure run install and try again.
def bash cmd
  sh cmd do |successful, result|
    # exitstatus 7 means bundle install failed
    # exitstatus 1 means the test failed
    if !successful && result.exitstatus === 7
      Rake::Task['install'].execute
      run_sh cmd
    end
  end
end

# Run a single test with:
# rake ios['ios/element/generic']
#
# rake ios['driver']
#
# Run all tests with:
# rake ios
desc 'Run the iOS tests'
task :ios, :args, :test_file do |args, test_file|
  # rake android['ok']
  # args = android
  # test_file = {:args=>"ok"}
  test_file         = test_file[:args]
  path              = File.expand_path('appium.txt', Rake.application.original_dir)
  ENV['APPIUM_TXT'] = path
  puts "Rake appium.txt path is: #{path}"
  cmd = 'bundle exec ruby ./lib/run.rb ios'
  cmd += %Q( "#{test_file}") if test_file
  bash cmd
end

desc 'Run bundle install'
task :install do
  sh 'bundle install'
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
appium_lib-3.0.3 ios_tests/Rakefile
appium_lib-3.0.2 ios_tests/Rakefile
appium_lib-3.0.1 ios_tests/Rakefile
appium_lib-3.0.0 ios_tests/Rakefile
appium_lib-2.1.0 ios_tests/Rakefile
appium_lib-2.0.0 ios_tests/Rakefile