Last weekend I setup integrity as 3 different heroku apps running ruby 1.8.6, 1.8.7 and 1.9.1 so I can use them as CI severs to test the gems I maintain against all 3 versions of ruby:
http://integrity186.heroku.com/ http://integrity187.heroku.com/ http://integrity191.heroku.com/ I used the integrity-heroku project Arun linked to above. My fork is on github if you want to work off of it: http://github.com/myronmarston/integrity-heroku Myron On Mar 19, 6:59 am, Arun Thampi <[email protected]> wrote: > You could also run a CI server on another dyno which runs your entire test > suite. > > Something like CIJoe or Integrity: > > http://github.com/defunkt/cijoehttp://integrityapp.com/ > > This might also be of help:http://github.com/sr/integrity-heroku > > Cheers, > Arun > > On Fri, Mar 19, 2010 at 9:51 PM, Ben Lovell <[email protected]>wrote: > > > > > > > On 19 March 2010 13:29, Matthew A. Brown <[email protected]> wrote: > > >> If you're concerned about regressions specific to the Heroku > >> environment, your best bet might be to write a test suite that makes > >> requests directly to your Heroku-hosted site (presumably you'd want to > >> do this in a staging environment). You could do it at the Selenium > >> layer or just by making HTTP requests from Ruby and making assertions > >> on the responses. > > > Good idea, I've found cucumber + mechanize to be excellent for that exact > > purpose. > > > Cheers, > > Ben > > >> On Fri, Mar 19, 2010 at 09:26, Betelgeuse <[email protected]> wrote: > >> > Heroku is not bug free so it would be useful to be able to run against > >> > the exact environment. > >> > I recently found an issue with Bamboo 1.8.7 not having Kernel#callcc > >> > for example. > > >> > On Mar 19, 2:02 pm, "Matthew A. Brown" <[email protected]> wrote: > >> >> I'm guessing Heroku doesn't intend for you to run your specs on their > >> >> dynos. When you install your app, my impression is that they > >> >> install/modify several config files in your app to make it play nice > >> >> with their environment, all of which are configured for the production > >> >> environment. > > >> >> What's wrong with just running the specs locally? > > >> > -- > >> > You received this message because you are subscribed to the Google > >> Groups "Heroku" group. > >> > To post to this group, send email to [email protected]. > >> > To unsubscribe from this group, send email to > >> [email protected]<heroku%[email protected]> > >> . > >> > For more options, visit this group at > >>http://groups.google.com/group/heroku?hl=en. > > >> -- > >> You received this message because you are subscribed to the Google Groups > >> "Heroku" group. > >> To post to this group, send email to [email protected]. > >> To unsubscribe from this group, send email to > >> [email protected]<heroku%[email protected]> > >> . > >> For more options, visit this group at > >>http://groups.google.com/group/heroku?hl=en. > > > -- > > You received this message because you are subscribed to the Google Groups > > "Heroku" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]<heroku%[email protected]> > > . > > For more options, visit this group at > >http://groups.google.com/group/heroku?hl=en. > > -- > It's better to be a pirate than join the Navy - Steve Jobshttp://mclov.in| > @iamclovin -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/heroku?hl=en.
