1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Add unit test runner for autocompletion

This commit is contained in:
HolonProduction
2023-11-21 16:06:43 +01:00
parent d822fd5322
commit af4cbaf751
15 changed files with 236 additions and 12 deletions

View File

@@ -266,7 +266,7 @@ bool GDScriptTestRunner::make_tests_for_dir(const String &p_dir) {
while (!next.is_empty()) {
if (dir->current_is_dir()) {
if (next == "." || next == "..") {
if (next == "." || next == ".." || next == "completion" || next == "lsp") {
next = dir->get_next();
continue;
}