From 710803a510d65e048baf410bc3bee1adf4535e32 Mon Sep 17 00:00:00 2001 From: Shay Palachy Date: Sat, 13 Jul 2019 18:48:10 +0300 Subject: [PATCH] travis - python 3.5 on windows --- .travis.yml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1bc59c1..3b31119 100644 --- a/.travis.yml +++ b/.travis.yml @@ -62,21 +62,31 @@ matrix: - pip install --upgrade pytest - pip install codecov env: PATH=/c/Python27:/c/Python27/Scripts:$PATH - - name: "Python 3.6 on Windows" + - name: "Python 3.5.7 on Windows" os: windows # Windows 10.0.17134 N/A Build 17134 language: shell # 'language: python' is an error on Travis CI Windows before_install: - - choco install python --version 3.6.7 + - choco install python --version 3.5.7 + - python --version + - python -m pip install --upgrade pip + - pip3 install --upgrade pytest + - pip3 install codecov + env: PATH=/c/Python35:/c/Python35/Scripts:$PATH + - name: "Python 3.6.9 on Windows" + os: windows # Windows 10.0.17134 N/A Build 17134 + language: shell # 'language: python' is an error on Travis CI Windows + before_install: + - choco install python --version 3.6.9 - python --version - python -m pip install --upgrade pip - pip3 install --upgrade pytest - pip3 install codecov env: PATH=/c/Python36:/c/Python36/Scripts:$PATH - - name: "Python 3.7 on Windows" + - name: "Python 3.7.4 on Windows" os: windows # Windows 10.0.17134 N/A Build 17134 language: shell # 'language: python' is an error on Travis CI Windows before_install: - - choco install python + - choco install python --version 3.7.4 - python --version - python -m pip install --upgrade pip - pip3 install --upgrade pytest