Re: Long running test suite

"Al Chou [email protected] [testdrivendevelopment]" <[email protected]> Mon, 23 May 2016 03:39:16 +0000 (UTC)
Newsgroups gmane.comp.programming.test-driven-development
Message-ID <[email protected]>
We use https://rubygems.org/gems/parallel_tests .  Be sure not to run more parallel test processes than you have CPU cores available, or the tests won't run as fast as they can.
-- 
Albert Davidson Chou 

    On Sunday, May 22, 2016 8:25 PM, "Joselito D Moreno [email protected] [testdrivendevelopment]" <[email protected]> wrote:
 

 <!--#yiv8709242819 #yiv8709242819 .yiv8709242819ygrp-photo-title{clear:both;font-size:smaller;height:15px;overflow:hidden;text-align:center;width:75px;}#yiv8709242819 div.yiv8709242819ygrp-photo{background-position:center;background-repeat:no-repeat;background-color:white;border:1px solid black;height:62px;width:62px;}#yiv8709242819 div.yiv8709242819photo-title a, #yiv8709242819 div.yiv8709242819photo-title a:active, #yiv8709242819 div.yiv8709242819photo-title a:hover, #yiv8709242819 div.yiv8709242819photo-title a:visited {text-decoration:none;}#yiv8709242819 div.yiv8709242819attach-table div.yiv8709242819attach-row {clear:both;}#yiv8709242819 div.yiv8709242819attach-table div.yiv8709242819attach-row div {float:left;}#yiv8709242819 p {clear:both;padding:15px 0 3px 0;overflow:hidden;}#yiv8709242819 div.yiv8709242819ygrp-file {width:30px;}#yiv8709242819 div.yiv8709242819attach-table div.yiv8709242819attach-row div div a {text-decoration:none;}#yiv8709242819 div.yiv8709242819attach-table div.yiv8709242819attach-row div div span {font-weight:normal;}#yiv8709242819 div.yiv8709242819ygrp-file-title {font-weight:bold;}#yiv8709242819 --> <!--#yiv8709242819 #yiv8709242819ygrp-mkp {border:1px solid #d8d8d8;font-family:Arial;margin:10px 0;padding:0 10px;}#yiv8709242819 #yiv8709242819ygrp-mkp hr {border:1px solid #d8d8d8;}#yiv8709242819 #yiv8709242819ygrp-mkp #yiv8709242819hd {color:#628c2a;font-size:85%;font-weight:700;line-height:122%;margin:10px 0;}#yiv8709242819 #yiv8709242819ygrp-mkp #yiv8709242819ads {margin-bottom:10px;}#yiv8709242819 #yiv8709242819ygrp-mkp .yiv8709242819ad {padding:0 0;}#yiv8709242819 #yiv8709242819ygrp-mkp .yiv8709242819ad p {margin:0;}#yiv8709242819 #yiv8709242819ygrp-mkp .yiv8709242819ad a {color:#0000ff;text-decoration:none;}-->

Hello,
To those who have experienced test suites that run long, say ~25 minutes, what are some techniques you have used to mitigate it?  We still would like to be able to check in often and run the test suites prior to checking our code in to our repository but these long running tests makes us stretch what we mean with "often".
Joen