olabusayoT opened a new issue, #158:
URL: https://github.com/apache/daffodil-sbt/issues/158

   The current readme states
   
   ```
   ...it may be useful to disable parallel execution for the more resource 
intensive tasks like packageDaffodilBin or tests:
   
   # run tests for root and all subprojects, disabling parallel execution of 
tests
   # and creating saved parsers
   sbt "set aggregate:= true" \
       "set packageDaffodilBin / parallelExecution := false" \
       "set test / parallelExecution := false" \
       "test"
   ```
   
   but this only sets it for the root, and each saved parser still runs in 
parallel, to get it to disable parallel execution, we need "every" as in
   
   ```
   # run tests for root and all subprojects, disabling parallel execution of 
tests
   # and creating saved parsers
   sbt "set aggregate:= true" \
       "set every packageDaffodilBin / parallelExecution := false" \
       "set every test / parallelExecution := false" \
       "test"
   ```


-- 
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]

Reply via email to