action #105984
Updated by tinita almost 3 years ago
## Observation
See https://github.com/os-autoinst/os-autoinst/pull/1947#issuecomment-1030202917
https://app.codecov.io/gh/os-autoinst/os-autoinst/compare/1947/changes
The changes being marked for lost coverage are:
```
# backend/baseclass.pm
347 $! = 0;
348 die($! ? "$!\n" : 'timeout exceeded') unless my @ready = $select->can_write($timeout);
349 for my $fh (@ready) {
350 if (defined $internal_pipe && $fh == $internal_pipe) {
351 $self->_write_buffered_data_to_file_handle('Encoder', $video_data_for_internal_encoder, $fh);
352 $select->remove($fh) unless @$video_data_for_internal_encoder;
```