mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-15 08:04:49 +01:00
windows build fixes: all tests should pass, ci with appveyor - add appveyor.yml - path fixes for windows, use os.path.join - templates_dir: use '/' always for jinja2 paths - auto colls: ensure chdir before deleting dir - recorder: ensure warc writer is always closed - recorder: disable locking in warcwriter on windows for now (read access not avail, shared lock seems to not be working) - zipnum: ensure block is closed after read! - cached dir test: wait before adding file - tests: adjust timeout tests to allow more leeway in timing
29 lines
689 B
YAML
29 lines
689 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 coveralls"
|
|
- "pip install cffi"
|
|
- "pip install pyopenssl"
|
|
- "pip install certauth boto youtube-dl"
|
|
|
|
build_script:
|
|
- "python setup.py install"
|
|
|
|
test_script:
|
|
- "python setup.py test"
|
|
|
|
|