1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 16:14:48 +01:00
pywb/appveyor.yml
Ilya Kreymer 9da5bd1083
Decoding and Recorder Fixes (#313)
* redisindex: use decode_resposes=True for redisindex
* recorder: close_file(): return true if closed, close_key() return filename if closed
* logging: if debug=True, log warc load failures
* appveyor build fix: add pypiwin32 as dependency for windows build
2018-03-29 13:42:00 -07:00

37 lines
973 B
YAML

environment:
global:
CMD_IN_ENV: "cmd /E:ON /V:ON /C obvci_appveyor_python_build_env.cmd"
matrix:
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python36-x64"
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "pip install --disable-pip-version-check --user --upgrade pip"
- "pip install -U setuptools"
- "pip install coverage pytest-cov"
- "pip install cffi"
- "pip install pyopenssl"
- "pip install pypiwin32"
- "pip install certauth boto3 youtube-dl pysocks"
- "pip install codecov"
build_script:
- "python setup.py install"
test_script:
- "python setup.py test"
after_test:
- rm -rf tests/coverages
- if not exist dist mkdir dist
- if exist .coverage (cp .coverage dist\) else (echo no .coverage)
- codecov
- if exist coverage.xml (cp coverage.xml dist\) else (echo no coverage.xml)