File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -27,16 +27,17 @@ install:
27
27
- " git -C %APPVEYOR_BUILD_FOLDER% submodule update --init"
28
28
- ps : (new-object net.webclient).DownloadFile('https://raw.githubusercontent.com/ogrisel/python-appveyor-demo/master/appveyor/install.ps1', 'C:/python-install.ps1')
29
29
- " powershell C:/python-install.ps1"
30
+ - ps : (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py')
31
+ - " %PYTHON%\\ python.exe C:/get-pip.py"
32
+ - " %PYTHON%\\ Scripts\\ pip.exe --version"
33
+ - " %PYTHON%\\ Scripts\\ pip.exe install wheel"
34
+ - " %PYTHON%\\ Scripts\\ pip.exe install -e ."
30
35
build : false
31
36
test_script :
32
37
- " dir \" C:\\ Program Files (x86)\" "
33
38
- " %PYTHON%\\ python.exe -c \" import os,pprint;pprint.pprint(os.environ)\" "
34
39
- " %PYTHON%\\ python.exe setup.py test"
35
40
after_test :
36
- - ps : (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py')
37
- - " %PYTHON%\\ python.exe C:/get-pip.py"
38
- - " %PYTHON%\\ Scripts\\ pip.exe --version"
39
- - " %PYTHON%\\ Scripts\\ pip.exe install wheel"
40
41
- " %PYTHON%\\ python.exe setup.py bdist_wheel"
41
42
artifacts :
42
43
- path : dist\*
You can’t perform that action at this time.
0 commit comments