Skip to content

Commit 5dce70f

Browse files
committed
Add workspace symbol support
1 parent ecffacb commit 5dce70f

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
- image: "python:2.7-stretch"
77
steps:
88
- checkout
9-
- run: apt-get ctags
9+
- run: apt-get install ctags
1010
- run: pip install -e .[all] .[test]
1111
- run: py.test test/
1212
- run: pylint pyls test
@@ -18,7 +18,7 @@ jobs:
1818
- image: "python:3.4-stretch"
1919
steps:
2020
- checkout
21-
- run: apt-get ctags
21+
- run: apt-get install ctags
2222
- run: pip install -e .[all] .[test]
2323
- run: py.test test/
2424

appveyor.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ init:
1515
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
1616

1717
install:
18+
- "curl -OutFile ctags.zip -Uri https://github.com/universal-ctags/ctags-win32/releases/download/2018-03-13%2F5010e849/ctags-2018-03-13_5010e849-x64.zip"
19+
- "7z e ctags.zip -o C:\Users\appveyor\bin ctags.exe"
20+
- "set PATH=%PATH%;C:\Users\appveyor\bin"
1821
- "%PYTHON%/python.exe -m pip install --upgrade pip setuptools"
1922
- "%PYTHON%/python.exe -m pip install .[all] .[test]"
2023

0 commit comments

Comments
 (0)