2010YOUY01 opened a new issue, #19228:
URL: https://github.com/apache/datafusion/issues/19228

   ### Is your feature request related to a problem or challenge?
   
   It would be great to have a testing option that achieves good coverage while 
remaining fast to run (on the order of tens of seconds). When working on 
complex changes, after each small atomic step I want to run a quick test suite 
to gain confidence that things are still correct, but running the full test 
suite is currently too slow.
   
   On my MacBook Pro (M4 Pro), `cargo nextest run` takes around 2 minutes 30 
seconds.
   
   I believe most tests are very fast, and only a small number are slow (e.g., 
fuzz tests). We could move these slow tests under an `extended_tests` feature.
   
   There are already existing tests gated by this feature:  
   
https://github.com/apache/datafusion/blob/4ddee14ee8428ad20bc08b47aaa1a91671c2fab5/.github/workflows/extended.yml#L127
   
   Once slow tests are moved, the fast test suite can be run with:
   
   `cargo nextest run`
   
   Ideally, this completes within one minute.
   
   To run the full test suite, use:
   
   `cargo nextest run --features ...,extended_tests,...`
   
   
   ### Describe the solution you'd like
   
   _No response_
   
   ### Describe alternatives you've considered
   
   _No response_
   
   ### Additional context
   
   _No response_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to