Added pip installation in appveyor builds

This commit is contained in:
Snaipe 2015-04-12 18:07:49 +02:00
parent 95953960e7
commit e83cfc412e
2 changed files with 8 additions and 1 deletions

4
.ci/install-pip.sh Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh
curl -O https://bootstrap.pypa.io/get-pip.py
python3 get-pip.py
rm -f get-pip.py

View file

@ -28,7 +28,6 @@ init:
-P git \
-P wget \
-P curl
- "%CYG_BASH% -lc 'pip install cpp-coveralls'"
environment:
global:
@ -60,6 +59,10 @@ install:
build_script:
- '%CYG_BASH% -lc "cd $APPVEYOR_BUILD_FOLDER; exec 0</dev/null; make"'
before_test:
- "%CYG_BASH% -lc 'cd $APPVEYOR_BUILD_FOLDER; .ci/install-pip.sh'"
- "%CYG_BASH% -lc 'pip install cpp-coveralls'"
test_script:
- '%CYG_BASH% -lc "cd $APPVEYOR_BUILD_FOLDER/samples; exec 0</dev/null; make check"'