Skip to content

Commit 6cd5495

Browse files
committed
Make AppVeyor to install the package
1 parent 2674d39 commit 6cd5495

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

appveyor.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,17 @@ install:
2727
- "git -C %APPVEYOR_BUILD_FOLDER% submodule update --init"
2828
- ps: (new-object net.webclient).DownloadFile('https://raw.githubusercontent.com/ogrisel/python-appveyor-demo/master/appveyor/install.ps1', 'C:/python-install.ps1')
2929
- "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 ."
3035
build: false
3136
test_script:
3237
- "dir \"C:\\Program Files (x86)\""
3338
- "%PYTHON%\\python.exe -c \"import os,pprint;pprint.pprint(os.environ)\""
3439
- "%PYTHON%\\python.exe setup.py test"
3540
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"
4041
- "%PYTHON%\\python.exe setup.py bdist_wheel"
4142
artifacts:
4243
- path: dist\*

0 commit comments

Comments
 (0)