mirror of
https://github.com/tiennm99/serena.git
synced 2026-07-14 07:05:20 +00:00
18 lines
431 B
Python
18 lines
431 B
Python
from pathlib import Path
|
|
|
|
from solidlsp.language_servers.clojure_lsp.clojure_lsp import verify_clojure_cli
|
|
|
|
|
|
def _test_clojure_cli() -> bool:
|
|
try:
|
|
verify_clojure_cli()
|
|
return False
|
|
except (FileNotFoundError, RuntimeError):
|
|
return True
|
|
|
|
|
|
CLI_FAIL = _test_clojure_cli()
|
|
TEST_APP_PATH = Path("src") / "test_app"
|
|
CORE_PATH = str(TEST_APP_PATH / "core.clj")
|
|
UTILS_PATH = str(TEST_APP_PATH / "utils.clj")
|