aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRaphael <glepnir@neovim.pro>2023-05-11 14:48:48 +0800
committerGitHub <noreply@github.com>2023-05-11 14:48:48 +0800
commit13e86cb91e45ba603b47f7fa1b68b5973565463f (patch)
tree81c7a67caa27166ddf391d238b28a644a1e78d50 /scripts
parentfix: check cmd not empty (#2602) (diff)
downloadnvim-lspconfig-13e86cb91e45ba603b47f7fa1b68b5973565463f.tar
nvim-lspconfig-13e86cb91e45ba603b47f7fa1b68b5973565463f.tar.gz
nvim-lspconfig-13e86cb91e45ba603b47f7fa1b68b5973565463f.tar.bz2
nvim-lspconfig-13e86cb91e45ba603b47f7fa1b68b5973565463f.tar.lz
nvim-lspconfig-13e86cb91e45ba603b47f7fa1b68b5973565463f.tar.xz
nvim-lspconfig-13e86cb91e45ba603b47f7fa1b68b5973565463f.tar.zst
nvim-lspconfig-13e86cb91e45ba603b47f7fa1b68b5973565463f.zip
test: remove test depend and use vusted (#2603)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/run_test.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/scripts/run_test.sh b/scripts/run_test.sh
deleted file mode 100644
index 7221ef80..00000000
--- a/scripts/run_test.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-PJ_ROOT=$(pwd)
-
-if [ ! -d ./neovim ]; then
- git clone --depth 1 https://github.com/neovim/neovim
-fi
-
-cd ./neovim
-
-make functionaltest \
- BUSTED_ARGS="--lpath=$PJ_ROOT/?.lua --lpath=$PJ_ROOT/lua/?.lua --lpath=$PJ_ROOT/lua/lspconfig/?.lua" \
- TEST_FILE="../test/lspconfig_spec.lua"