I have an existing store with a collection of existing plugins. I'm trying to setup an integration test to test some new features, but the test doesn't get past the installation:
Module 'Manadev_SpecialCategories': Installing schema... In EavSetup.php line 296: [Magento\Framework\Exception\LocalizedException] The entity ID is incorrect. Verify the ID and try again. I checked the code in the stack trace and I see that this plugin in it's setup script tries to select the id from eavy_entity_type where entity_type_code is catalog_category
But, in the testing database this table is completely empty, so the setup script fails. Is there a way to bypass this, or trigger the magento seeders to get integration tests running smoothly?