potiuk commented on pull request #9973:
URL: https://github.com/apache/airflow/pull/9973#issuecomment-848615576
> @potiuk thank you, that sorted it.. btw does the master build run on self
hosted runners which have more memory.. should we enable mssql integration
tests for master builds?
It does and it is already sorted out :). the change I added is in the branch
that is only executed when memory on the instance is less than < 32 G or so -
this means that integration tests will run on master in MSSQL as well :).
```
if [[ ${test_types_to_run} == *"Integration"* ]]; then
if (( MEMORY_AVAILABLE_FOR_DOCKER <
MEMORY_REQUIRED_FOR_INTEGRATION_TEST_PARALLEL_RUN )) ; then
# In case of Integration tests - they need more resources
(Memory) thus we only run them in
```
--
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]