oraios--serena
c6af9e284a
Tests / catch-all (windows-latest) (push) Has been cancelled
Tests / jvm (macos-latest) (push) Has been cancelled
Tests / jvm (ubuntu-latest) (push) Has been cancelled
Tests / jvm (windows-latest) (push) Has been cancelled
Tests / native (macos-latest) (push) Has been cancelled
Tests / native (ubuntu-latest) (push) Has been cancelled
Tests / native (windows-latest) (push) Has been cancelled
Tests / niche (ubuntu-latest) (push) Has been cancelled
Tests / other-langs (macos-latest) (push) Has been cancelled
Tests / other-langs (ubuntu-latest) (push) Has been cancelled
Tests / other-langs (windows-latest) (push) Has been cancelled
Tests / catch-all (macos-latest) (push) Has been cancelled
Tests / catch-all (ubuntu-latest) (push) Has been cancelled
Docs Build / build (push) Has been cancelled
Docs Build / deploy (push) Has been cancelled
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
Codespell / Check for spelling errors (push) Has been cancelled
Build and Push Docker Images / build-and-push (push) Has been cancelled
16 行
411 B
Python
16 行
411 B
Python
"""Svelte language server tests."""
|
|
|
|
import shutil
|
|
|
|
|
|
def _test_npm_available() -> str:
|
|
"""Test if npm is available and return error reason if not."""
|
|
# Check if npm is installed
|
|
if not shutil.which("npm"):
|
|
return "npm is not installed or not in PATH"
|
|
return "" # No error, npm is available
|
|
|
|
|
|
NPM_UNAVAILABLE_REASON = _test_npm_available()
|
|
NPM_UNAVAILABLE = bool(NPM_UNAVAILABLE_REASON)
|