From b0e33fa39aadccf296081f017a4f77bbf0ee6fd8 Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Wed, 14 May 2014 11:07:10 -0700 Subject: [PATCH] ycm tests now add ycmd/third_party to PYTHONPATH --- run_tests.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/run_tests.sh b/run_tests.sh index 5607b87f..b1689092 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -14,4 +14,11 @@ for directory in $SCRIPT_DIR/third_party/*; do fi done + +for directory in $SCRIPT_DIR/third_party/ycmd/third_party/*; do + if [ -d "${directory}" ]; then + export PYTHONPATH=${directory}:$PYTHONPATH + fi +done + nosetests -v $SCRIPT_DIR/python