[go: up one dir, main page]

Menu

[5266d2]: / appveyor.yml  Maximize  Restore  History

Download this file

16 lines (15 with data), 612 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
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"