environment:
matrix:
# For Python versions available on Appveyor, see
# http://www.appveyor.com/docs/installed-software#python
# The list here is complete (excluding Python 2.6, which
# isn't covered by this document) at the time of writing.
- PYTHON: "C:\\Python36-x64"
install:
- "%PYTHON%\\python.exe -m pip install -r pre_requirements.txt"
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
- copy config\default_config.json config.json
- "%PYTHON%\\python.exe start.py -p install all"
build: off
test_script:
- "%PYTHON%\\python.exe -m pip install -r dev_requirements.txt"
- "%PYTHON%\\python.exe -m pytest tests"