[go: up one dir, main page]

Menu

[a3dba1]: / appveyor.yml  Maximize  Restore  History

Download this file

22 lines (16 with data), 667 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
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"