forked from andreikop/enki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
29 lines (25 loc) · 958 Bytes
/
appveyor.yml
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
28
29
# ****************************************
# appveyor.yml - Appveyor CI configuration
# ****************************************
environment:
matrix:
# We only have a pre-compiled PyQt5 for Python 3.4, so only test on that.
- PYTHON: "C:\\Python34"
install:
# Add the correct Python to the path.
- set PATH=%PYTHON%;%PYTHON%\Script;%PATH%
# Install dependencies needed by the CI script and by Enki.
- git clone https://github.com/hlamer/qutepart.git
- python -m pip install -U -r qutepart\tests\ci\requirements.txt
# Use a python script to do all the heavy lifting.
- python tests\ci.py install
# Use this to prevent Appveyor from running MSBuild. See https://www.appveyor.com/docs/appveyor-yml
# line 181.
build_script:
- echo "Avoiding the MSBUILD step."
# See https://www.appveyor.com/docs/appveyor-yml line 215.
test_script:
- python tests\ci.py test
# See https://www.appveyor.com/docs/build-cache.
cache:
- \downloads