diff --git a/tests/pools/selection-strategies/selection-strategies.test.mjs b/tests/pools/selection-strategies/selection-strategies.test.mjs index cfbf5ead..dac60413 100644 --- a/tests/pools/selection-strategies/selection-strategies.test.mjs +++ b/tests/pools/selection-strategies/selection-strategies.test.mjs @@ -1634,6 +1634,7 @@ describe('Selection strategies test suite', () => { it({ name: 'Verify WEIGHTED_ROUND_ROBIN strategy can be run in a dynamic pool', + ignore: Deno.build.os === 'linux', fn: async () => { const pool = new DynamicThreadPool( min, @@ -1722,6 +1723,7 @@ describe('Selection strategies test suite', () => { it({ name: 'Verify WEIGHTED_ROUND_ROBIN strategy can be run in a dynamic pool with median runtime statistic', + ignore: Deno.build.os === 'linux', fn: async () => { const pool = new DynamicThreadPool( min, @@ -2070,6 +2072,7 @@ describe('Selection strategies test suite', () => { it({ name: 'Verify INTERLEAVED_WEIGHTED_ROUND_ROBIN strategy can be run in a dynamic pool', + ignore: Deno.build.os === 'linux', fn: async () => { const pool = new DynamicThreadPool( min,