[go: up one dir, main page]

Menu

[bae86d]: / appveyor.yml  Maximize  Restore  History

Download this file

15 lines (14 with data), 592 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
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"
- copy config\default_config.json 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"