diff --git a/.travis.yml b/.travis.yml index d8a3c1edcfaad6a034cd084e156df902ce375c6b..f05ff058f62a86f3d0c017e4fb9969f77588fa35 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,10 +4,11 @@ jobs: include: - name: "CI on Windows/Python3.6" os: windows - python: 3.6 - - name: "CI on MacOS/Python3.6" - os: osx - python: 3.6 + language: shell + before_install: + - choco install python --version 3.6.0 + - python -m pip install --upgrade pip + env: PATH=/c/Python36:/c/Python36/Scripts:$PATH - name: "CI on Linux/Python3.6" os: linux python: 3.6 @@ -18,10 +19,12 @@ jobs: os: linux python: 2.7 +env: + - PYTHONPATH=${PWD} + install: - pip install --upgrade paddlepaddle - pip install -r requirements.txt - - pip install . script: - if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then /bin/bash ./scripts/check_code_style.sh; fi