Skip to content

Commit c64d817

Browse files
committed
CICD-2390: Speed up L2 by run test in batch
1 parent c869b35 commit c64d817

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

dev/tests/integration/framework/Magento/TestFramework/Listener/ExtededTestdox.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ protected function endClass($name)
296296
protected function doEndClass()
297297
{
298298
foreach ($this->tests as $name => $data) {
299-
$check = $data['failure'] == 0 ? ' [x] ' : ' [ ] ';
299+
$check = $data['failure'] == 0 ? ' - [x] ' : ' - [ ] ';
300300
$this->write(
301301
"\n" . $check . $name . ($data['failure'] + $data['success'] ==
302302
0 ? ' (skipped)' : '') . ($data['time'] > 1 ? ' - ' . number_format(

dev/tests/integration/testsuite/Magento/ConfigurableImportExport/Model/ConfigurableTest.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,21 @@ public function importReplaceDataProvider()
9494
}
9595
return $data;
9696
}
97+
98+
/**
99+
* @magentoAppArea adminhtml
100+
* @magentoDbIsolation enabled
101+
* @magentoAppIsolation enabled
102+
*
103+
* @param array $fixtures
104+
* @param string[] $skus
105+
* @param string[] $skippedAttributes
106+
* @dataProvider importReplaceDataProvider
107+
*/
108+
public function testImportReplace($fixtures, $skus, $skippedAttributes = [])
109+
{
110+
$this->markTestSkipped('MAGETWO-56530s');
111+
parent::testImportReplace($fixtures, $skus, $skippedAttributes);
112+
}
113+
97114
}

0 commit comments

Comments
 (0)