We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 12cdaa1 + c7a4d54 commit 102f495Copy full SHA for 102f495
.github/workflows/python-package.yml
@@ -26,7 +26,7 @@ jobs:
26
- name: Install dependencies
27
run: |
28
python -m pip install --upgrade pip
29
- pip install flake8 pytest mock
+ pip install flake8 pytest
30
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
31
- name: Lint with flake8
32
setup.cfg
@@ -32,7 +32,6 @@ test =
pytest
33
pytest-cov
34
coverage
35
- mock
36
37
[options.packages.find]
38
exclude =
test/test_plugin.py
@@ -3,7 +3,7 @@
3
from pylsp.workspace import Workspace, Document
4
from pylsp.config.config import Config
5
from pylsp import uris
6
-from mock import Mock
+from unittest.mock import Mock
7
from pylsp_mypy import plugin
8
9
DOC_URI = __file__
0 commit comments