I am experiencing significant performance issues with LiipTestFixturesBundle version 2.6.0 when using the loadFixtures method with zero insertions. Even with an empty set of fixtures as shown below, tests take 7 to 9 seconds to run, which seems abnormally high. And without loadFixtures() 260 ms
$this->databaseTool->loadFixtures([ ExempleFixtures::class]);
<?php
namespace App\DataFixtures;
use Doctrine\Bundle\FixturesBundle\Fixture;
use Doctrine\Persistence\ObjectManager;
class ExempleFixtures extends Fixture
{
public function load(ObjectManager $manager)
{
}
}
Originally posted by @Dekrikh in #12 (comment)
Originally posted by @Dekrikh in #12 (comment)