-
Notifications
You must be signed in to change notification settings - Fork 291
Expand file tree
/
Copy pathappveyor.yml
More file actions
30 lines (23 loc) · 800 Bytes
/
appveyor.yml
File metadata and controls
30 lines (23 loc) · 800 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
28
29
30
environment:
matrix:
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.15"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python34"
PYTHON_VERSION: "3.4.9"
PYTHON_ARCH: "64"
matrix:
fast_finish: true
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
install:
- 'appveyor DownloadFile "https://github.com/universal-ctags/ctags-win32/releases/download/2018-03-13/5010e849/ctags-2018-03-13_5010e849-x64.zip" -FileName ctags.zip'
- '7z e ctags.zip -oC:\Users\appveyor\bin ctags.exe'
- 'set PATH=%PATH%;C:\Users\appveyor\bin'
- '%PYTHON%/python.exe -m pip install --upgrade pip setuptools'
- '%PYTHON%/python.exe -m pip install .[all] .[test]'
test_script:
- "%PYTHON%/Scripts/pytest.exe test/"
build: false # Not a C# project
cache:
- '%APPDATA%\pip\Cache'