Skip to content

Commit 4b6275a

Browse files
chore: Skip flaky logs test on Windows (#1860)
We keep running out of expectations on the Windows platform. This is intermittent, but happens frequently enough that it's blocking releases.
1 parent 85e99f9 commit 4b6275a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

logs_sdk/test/opentelemetry/sdk/logs/export/batch_log_record_processor_test.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -472,6 +472,9 @@ def shutdown(timeout: nil)
472472
let(:processor) { BatchLogRecordProcessor.new(exporter) }
473473

474474
it 'reports export failures' do
475+
# This test is unreliable on Windows platforms, but works just fine on others
476+
skip if Gem.win_platform?
477+
475478
# skip the work method's behavior, we rely on shutdown to get us to the failures
476479
processor.stub(:work, nil) do
477480
mock_logger = Minitest::Mock.new

0 commit comments

Comments
 (0)