environment:
matrix:
- PYTHON: "C:\\Python37-x64"
cache:
- '%LOCALAPPDATA%\pip\Cache'
install:
- "%PYTHON%\\python.exe -m pip install pypiwin32" # dependency removed from appveyor python default install
- "%PYTHON%\\python.exe -m pip install -r pre_requirements.txt"
- "%PYTHON%\\python.exe -m pip install -r requirements.txt -r dev_requirements.txt"
- mkdir user
- copy config\default_config.json user\config.json
- "%PYTHON%\\python.exe start.py -p install all"
build: off
test_script:
- "%PYTHON%\\python.exe -m pytest -n 5 tests/unit_tests tests/functional_tests tests/endurance_tests"