2015-08-11 02:45:03 +00:00
|
|
|
build: false
|
|
|
|
environment:
|
|
|
|
matrix:
|
|
|
|
- PYTHON: "C:/Python27"
|
|
|
|
install:
|
2016-02-24 01:00:14 +00:00
|
|
|
- ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py')
|
2015-08-11 02:45:03 +00:00
|
|
|
- "%PYTHON%/python.exe C:/get-pip.py"
|
|
|
|
- "%PYTHON%/Scripts/pip.exe --version"
|
2015-08-11 02:46:33 +00:00
|
|
|
- "%PYTHON%/Scripts/pip.exe install tox"
|
2016-02-25 19:04:14 +00:00
|
|
|
test_script:
|
|
|
|
- "git clone https://github.com/aspnet/Identity %APPVEYOR_BUILD_FOLDER%/tests/dotnetexample/example/Identity"
|
2015-08-14 22:05:20 +00:00
|
|
|
- "%PYTHON%/Scripts/tox.exe -e py27"
|