Skip to content

Commit ff9aed8

Browse files
committed
Dont run performance test in CI
1 parent 602fa66 commit ff9aed8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/CsvReadTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,10 @@ public function testInvalidFile()
500500
*/
501501
public function testPerformance($fileContent, $expectedRows, $maxDuration)
502502
{
503+
self::markTestSkipped(
504+
'Run this test only manually. Because the duration is very different in local CI environment.'
505+
);
506+
503507
try {
504508
$fileName = sys_get_temp_dir() . DIRECTORY_SEPARATOR . uniqid('perf-test');
505509
file_put_contents($fileName, $fileContent);

0 commit comments

Comments
 (0)