[go: up one dir, main page]

Menu

[eb868d]: / appveyor.yml  Maximize  Restore  History

Download this file

28 lines (27 with data), 934 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
environment:
matrix:
- PYTHON: "C:\\Python37-x64"
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_script:
- "%PYTHON%\\python.exe -m nltk.downloader -d %NLTK_DATA% words"
- "%PYTHON%\\Scripts\\pyinstaller.exe docs/delivery/start.spec"
- "echo f | xcopy /f /y dist\\OctoBot.exe dist\\OctoBot_windows.exe"
test_script:
- "%PYTHON%\\python.exe -m pytest tests/unit_tests"
- "%PYTHON%\\python.exe -m pytest tests/functional_tests"
artifacts:
- path: dist/OctoBot_windows.exe
name: OctoBot_windows.exe
deploy:
- provider: Environment
name: GITHUB_RELEASE_OCTOBOT
draft: false
prerelease: false
artifact: OctoBot_windows.exe
on:
branch: beta
APPVEYOR_REPO_TAG: true