Skip to content

Commit cb38912

Browse files
fix travis ci for widows (#564)
1 parent b2f3f08 commit cb38912

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.travis.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ matrix:
2020
env: VIM_TYPE=neovim VIM_VERSION=nightly
2121
include:
2222
- os: osx
23-
env: VIM_TYPE=neovim VIM_VERSION=0.3.1
23+
env: VIM_TYPE=neovim VIM_VERSION=0.4.3
2424
- os: osx
2525
env: VIM_TYPE=vim VIM_VERSION=default
2626
- os: linux
2727
dist: trusty
2828
python: "3.6"
29-
env: VIM_TYPE=neovim VIM_VERSION=0.3.1
29+
env: VIM_TYPE=neovim VIM_VERSION=0.4.3
3030
- os: windows
3131
language: shell
32-
env: VIM_TYPE=neovim VIM_VERSION=0.3.1
32+
env: VIM_TYPE=neovim VIM_VERSION=0.4.3
3333
- os: windows
3434
language: shell
3535
env: VIM_TYPE=vim VIM_VERSION=default
@@ -69,7 +69,7 @@ before_install:
6969
powershell -Command "Set-ExecutionPolicy RemoteSigned -scope CurrentUser";
7070
powershell -Command "iex (new-object net.webclient).downloadstring('https://get.scoop.sh')";
7171
export PATH="$HOME/scoop/shims:$PATH;";
72-
export PATH="$APPDATA/Python/Python37/Scripts:$PATH;";
72+
export PATH="$APPDATA/Python/Python38/Scripts:$PATH;";
7373
powershell -Command "scoop install python";
7474
python3 -m pip install --user vim-vint typing;
7575
if [[ "$VIM_TYPE" == "neovim" ]]; then
@@ -79,13 +79,14 @@ before_install:
7979
unzip "$DOWNLOADS_DIR/neovim-win64.zip" -d "$DOWNLOADS_DIR";
8080
export PATH="$DOWNLOADS_DIR/Neovim/bin:$PATH";
8181
fi;
82-
fi
82+
fi;
8383
- git clone --depth 1 --branch v1.5.4 --single-branch https://github.com/thinca/vim-themis /tmp/vim-themis
8484
- export PATH="/tmp/vim-themis/bin:$PATH";
8585
- if [[ "$VIM_TYPE" == "neovim" ]]; then export THEMIS_VIM=nvim; fi;
8686

8787
before_script:
8888
- uname -a
89+
- export
8990
- which -a python
9091

9192
script:

0 commit comments

Comments
 (0)