make: reduce itest parallelism from 6 to 4

It seems that our itests don't perform correctly in a high CPU usage
scenario such as running 6 tests in parallel. Some goroutines don't get
enough execution time and causes check to time out.
By reducing the total number of parallel tests, we hope to give all
goroutines some more breathing room.
This commit is contained in:
Oliver Gugger 2020-12-08 16:27:00 +01:00
parent 3823315820
commit dfb131f82f
No known key found for this signature in database
GPG Key ID: 8E4256593F177720

View File

@ -5,7 +5,7 @@ TEST_FLAGS =
ITEST_FLAGS =
EXEC_SUFFIX =
COVER_PKG = $$(go list -deps ./... | grep '$(PKG)' | grep -v lnrpc)
NUM_ITEST_TRANCHES = 6
NUM_ITEST_TRANCHES = 4
ITEST_PARALLELISM = $(NUM_ITEST_TRANCHES)
# If rpc option is set also add all extra RPC tags to DEV_TAGS