Skip to content

Commit 7fc69c5

Browse files
committed
Skip more irellevant tests on windows
1 parent cb381cb commit 7fc69c5

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

  • src/adapter/etl-adapter-text/tests/Flow/ETL/Adapter/Text/Tests/Integration

src/adapter/etl-adapter-text/tests/Flow/ETL/Adapter/Text/Tests/Integration/TextTest.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,18 @@
99
use function Flow\ETL\DSL\{generate_random_string, string_entry};
1010
use function Flow\ETL\DSL\{row, rows};
1111
use Flow\ETL\{Tests\FlowTestCase};
12+
use Flow\Filesystem\Tests\OperatingSystem;
1213

1314
final class TextTest extends FlowTestCase
1415
{
16+
use OperatingSystem;
17+
1518
public function test_loading_text_files() : void
1619
{
20+
if ($this->isWindows()) {
21+
self::markTestSkipped('This test is failing on windows due to different new line characters.');
22+
}
23+
1724
$path = __DIR__ . '/var/flow_php_etl_csv_loader' . generate_random_string() . '.csv';
1825

1926
(data_frame())

0 commit comments

Comments
 (0)