Skip to content
hopsoft edited this page Nov 17, 2014 · 6 revisions

How to setup Travis CI integration with PryTest.

Create a Rakefile at the root of your project that looks like this.

# Rakefile
require "bundler/gem_tasks"

task :test do
  exec "bundle exec pry-test --disable-pry"
end

task :default => :test

Follow the instructions on the Travis CI site for the remaining configuration.