Skip to content

Commit 7b04a9b

Browse files
committed
test
1 parent ae05825 commit 7b04a9b

File tree

4 files changed

+4
-35
lines changed

4 files changed

+4
-35
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Python Language Server
1313
.. image:: https://img.shields.io/github/license/palantir/python-language-server.svg
1414
:target: https://github.com/palantir/python-language-server/blob/master/LICENSE
1515

16-
A Python 2.7 and 3.6+ implementation of the `Language Server Protocol`_.
16+
A Python 2.7 and 3.5+ implementation of the `Language Server Protocol`_.
1717

1818
Installation
1919
------------

appveyor.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

test/test_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from pyls import _utils
88

99

10-
@flaky(max_runs=3, min_passes=1)
10+
@flaky
1111
def test_debounce():
1212
interval = 0.1
1313
obj = mock.Mock()
@@ -31,7 +31,7 @@ def call_m():
3131
assert len(obj.mock_calls) == 2
3232

3333

34-
@flaky(max_runs=3, min_passes=1)
34+
@flaky
3535
def test_debounce_keyed_by():
3636
interval = 0.1
3737
obj = mock.Mock()

test/test_workspace.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ def test_root_workspace_removed(tmpdir, pyls):
199199
assert pyls.workspace._root_uri == path_as_uri(str(workspace1_dir))
200200

201201

202+
@pytest.mark.skipif(os.name == 'nt', reason="Fails on Windows")
202203
def test_workspace_loads_pycodestyle_config(pyls, tmpdir):
203204
workspace1_dir = tmpdir.mkdir('Test123')
204205
pyls.root_uri = str(workspace1_dir)

0 commit comments

Comments
 (0)