Sha256: 983262f0e65929d2dbe02bd507f6daa1d56074eb07f35f341832a81496356001

Contents?: true

Size: 493 Bytes

Versions: 10

Compression:

Stored size: 493 Bytes

Contents

#!/usr/bin/env ruby
require 'fileutils'
include FileUtils

# path to your application root.
APP_ROOT = File.expand_path('..', __dir__)

def system!(*args)
  puts "Run: #{args.join(' ')}"
  system(*args) || abort("\n== Command #{args} failed ==")
end

chdir APP_ROOT do
  puts "\n== Performing setup =="
  system!('./bin/setup')

  puts "\n== Run test suite =="
  # DEV: There are no RSpec tests right now.
  #      Re-enable this when we have something worth testing.
  # system!('rspec')
end

Version data entries

10 entries across 7 versions & 1 rubygems

Version Path
ddtrace-0.51.1 integration/apps/ruby/bin/test
ddtrace-0.51.1 integration/apps/rspec/bin/test
ddtrace-0.51.0 integration/apps/rspec/bin/test
ddtrace-0.51.0 integration/apps/ruby/bin/test
ddtrace-0.50.0 integration/apps/ruby/bin/test
ddtrace-0.50.0 integration/apps/rspec/bin/test
ddtrace-0.49.0 integration/apps/ruby/bin/test
ddtrace-0.48.0 integration/apps/ruby/bin/test
ddtrace-0.47.0 integration/apps/ruby/bin/test
ddtrace-0.46.0 integration/apps/ruby/bin/test