فهرست منبع

run_tests.sh only runs YCM tests, not ycmd ones

Strahinja Val Markovic 11 سال پیش
والد
کامیت
4344ee70a8
3فایلهای تغییر یافته به همراه0 افزوده شده و 10 حذف شده
  1. 0 7
      .travis.yml
  2. 0 1
      python/test_requirements.txt
  3. 0 2
      run_tests.sh

+ 0 - 7
.travis.yml

@@ -6,11 +6,4 @@ before_install:
   - git submodule update --init --recursive
 install:
   - pip install -r python/test_requirements.txt --use-mirrors
-  - sudo apt-get install mono-devel
-compiler:
-  - gcc
-  - clang
 script: ./run_tests.sh
-env:
-  - USE_CLANG_COMPLETER="true"
-  - USE_CLANG_COMPLETER="false"

+ 0 - 1
python/test_requirements.txt

@@ -2,5 +2,4 @@ flake8>=2.0
 mock>=1.0.1
 nose>=1.3.0
 PyHamcrest>=1.8.0
-WebTest>=2.0.9
 

+ 0 - 2
run_tests.sh

@@ -4,8 +4,6 @@ set -e
 
 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
 
-$SCRIPT_DIR/third_party/ycmd/run_tests.sh "$@"
-
 flake8 --select=F,C9 --max-complexity=10 $SCRIPT_DIR/python
 
 for directory in $SCRIPT_DIR/third_party/*; do