diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-08 11:51:03 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-08 11:51:03 +0100 |
commit | b88535fe23366ac1112fbbcc7c90a603c37cbd32 (patch) | |
tree | 325d4f259c2f05306f34edc9b54bbee6e2745b74 /modules/gdscript/tests/gdscript_test_runner.cpp | |
parent | a2bd7c3301360945abb4b9b62182e2ba809b10d5 (diff) | |
parent | af4cbaf75125cdb1f37ece93802e75b03af9d96f (diff) | |
download | redot-engine-b88535fe23366ac1112fbbcc7c90a603c37cbd32.tar.gz |
Merge pull request #85178 from HolonProduction/completion-tests
Add unit test runner for autocompletion
Diffstat (limited to 'modules/gdscript/tests/gdscript_test_runner.cpp')
-rw-r--r-- | modules/gdscript/tests/gdscript_test_runner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/tests/gdscript_test_runner.cpp b/modules/gdscript/tests/gdscript_test_runner.cpp index 361ca276bb..4d93a6fc18 100644 --- a/modules/gdscript/tests/gdscript_test_runner.cpp +++ b/modules/gdscript/tests/gdscript_test_runner.cpp @@ -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; } |