Re: Speeding Up Unit Tests

2017-08-30 Thread Timothy Farkas
; Sent: Wednesday, August 30, 2017 9:51:30 AM To: dev@drill.apache.org Subject: Re: Speeding Up Unit Tests Hi Tim, Here’s another thought. JUnit & SureFire have a way of grouping tests into categories. The classic grouping are the “fast” tests we want to run all the time, and the “slow” te

Re: Speeding Up Unit Tests

2017-08-30 Thread Paul Rogers
read safe. Maybe we can get more > speedups from being able to run multiple tests in parallel in the same > process as well. > > Tim > > > From: Paul Rogers <prog...@mapr.com> > Sent: Monday, August 28, 2017 6:39:10 PM > To: dev

Re: Speeding Up Unit Tests

2017-08-29 Thread Timothy Farkas
multiple tests in parallel in the same process as well. Tim From: Paul Rogers <prog...@mapr.com> Sent: Monday, August 28, 2017 6:39:10 PM To: dev@drill.apache.org Subject: Re: Speeding Up Unit Tests Tests run in parallel when run from the command line in Mav

Re: Speeding Up Unit Tests

2017-08-28 Thread Paul Rogers
Tests run in parallel when run from the command line in Maven. We have had issues, especially when some test changes global state. Can’t remember the details, however. - Paul > On Aug 28, 2017, at 6:04 PM, Timothy Farkas wrote: > > Hi All, > > I will be working on >

Speeding Up Unit Tests

2017-08-28 Thread Timothy Farkas
Hi All, I will be working on DRILL-5730 and see some other areas for potential improvement with regard to testing: 1. Add caching of maven artifacts to the Travis build. This should significantly speed up compiling the code in travis. 2.