diff --git a/tests/YamlTestSuiteTest.php b/tests/YamlTestSuiteTest.php index 29674dc..53dfafa 100644 --- a/tests/YamlTestSuiteTest.php +++ b/tests/YamlTestSuiteTest.php @@ -67,6 +67,9 @@ public static function yamlTestSuiteProvider(): array $testDirs = []; foreach ($shortcodeDirs as $shortcodeDir) { $shortcode = basename($shortcodeDir); + if (in_array($shortcode, ['name', 'tags'], true)) { + continue; + } if (file_exists($shortcodeDir . \DIRECTORY_SEPARATOR . 'in.yaml')) { $testDirs[] = [$shortcode, $shortcodeDir];