We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb381cb commit 7fc69c5Copy full SHA for 7fc69c5
1 file changed
src/adapter/etl-adapter-text/tests/Flow/ETL/Adapter/Text/Tests/Integration/TextTest.php
@@ -9,11 +9,18 @@
9
use function Flow\ETL\DSL\{generate_random_string, string_entry};
10
use function Flow\ETL\DSL\{row, rows};
11
use Flow\ETL\{Tests\FlowTestCase};
12
+use Flow\Filesystem\Tests\OperatingSystem;
13
14
final class TextTest extends FlowTestCase
15
{
16
+ use OperatingSystem;
17
+
18
public function test_loading_text_files() : void
19
20
+ if ($this->isWindows()) {
21
+ self::markTestSkipped('This test is failing on windows due to different new line characters.');
22
+ }
23
24
$path = __DIR__ . '/var/flow_php_etl_csv_loader' . generate_random_string() . '.csv';
25
26
(data_frame())
0 commit comments