in reply to Time consuming tests

I would use a environ var as grinder suggested. I never move a test out of the test directory. However, consider that a test that is never run is useless and can be removed. And is the test really run so often that you can not afford the additional 30 sec's?
Boris

Replies are listed 'Best First'.
Re^2: Time consuming tests
by jplindstrom (Monsignor) on Jan 27, 2005 at 13:30 UTC
    Yes, these are development tools, not an install-sanity check. They should be run like a trillion times a day.

    Mostly I run a particular .t file when developing that feature but sometimes during this time, and before check-in, I run the entire suite.

    I went with the suggested SKIP on variable approach and it works fine (thanks grinder!)

    Depending on how close to the SSH stuff that last edit was, I'm gonna run those tests as well.

    /J