iilyak commented on issue #2030: eunit test timedout errors during jenkins CI 
URL: https://github.com/apache/couchdb/issues/2030#issuecomment-495347800
 
 
   We could also try patching rebar. We can try to change [this 
function](https://github.com/rebar/rebar/blob/master/src/rebar_eunit.erl#L468:L469)
 
   
   from 
   ```
   eunit_primitive(Type, M, F) ->
      {Type, M, F}.
   ```
   
   to 
   ```
   eunit_primitive({timeout, _, _} = Type, M, F) ->
      {Type, M, F};
   eunit_primitive(Type, M, F) ->
      {timeout, 999999999999999999, [{Type, M, F}]}.
   ```

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to