sphinx-autoapi/appveyor.yml

14 lines
537 B
YAML
Raw Normal View History

2015-08-11 02:45:03 +00:00
build: false
environment:
matrix:
2019-06-23 20:30:17 +00:00
- PYTHON: "C:/Python37"
2015-08-11 02:45:03 +00:00
install:
2017-11-07 02:03:43 +00:00
- ps: "[Net.ServicePointManager]::SecurityProtocol = 'Ssl3, Tls, Tls11, Tls12'"
2017-11-07 02:05:49 +00:00
- ps: "Start-FileDownload 'https://bootstrap.pypa.io/get-pip.py' -FileName '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"
2019-06-23 20:30:17 +00:00
- "%PYTHON%/Scripts/tox.exe -e py37"