forked from ycm-core/ycmd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_tests.sh
executable file
·55 lines (45 loc) · 1.09 KB
/
run_tests.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env bash
set -e
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
function usage {
echo "Usage: $0 [--no-clang-completer] [--skip-build]"
exit 0
}
flake8 --select=F,C9 --max-complexity=10 "${SCRIPT_DIR}/ycmd"
use_clang_completer=true
skip_build=false
for flag in $@; do
case "$flag" in
--no-clang-completer)
use_clang_completer=false
;;
--skip-build)
skip_build=true
;;
*)
usage
;;
esac
done
if [ -n "$USE_CLANG_COMPLETER" ]; then
use_clang_completer=$USE_CLANG_COMPLETER
fi
if $use_clang_completer; then
extra_cmake_args="-DUSE_CLANG_COMPLETER=ON -DUSE_DEV_FLAGS=ON"
else
extra_cmake_args="-DUSE_DEV_FLAGS=ON"
fi
if ! $skip_build; then
EXTRA_CMAKE_ARGS=$extra_cmake_args YCM_TESTRUN=1 \
"${SCRIPT_DIR}/build.sh" --omnisharp-completer
fi
for directory in "${SCRIPT_DIR}"/third_party/*; do
if [ -d "${directory}" ]; then
export PYTHONPATH=${directory}:$PYTHONPATH
fi
done
if $use_clang_completer; then
nosetests -v "${SCRIPT_DIR}/ycmd"
else
nosetests -v --exclude=".*Clang.*" "${SCRIPT_DIR}/ycmd"
fi