|
57 | 57 | "python.autoComplete.extraPaths": [ |
58 | 58 | "./src", |
59 | 59 | "./mock", |
60 | | - "./test", |
| 60 | + "./tests", |
61 | 61 | "./venv2/bin", |
62 | 62 | "./venv2/Lib/python2.7/site-packages", |
63 | 63 | // "./venv/bin", |
64 | 64 | // "./venv/Lib/python3.7/site-packages", |
65 | 65 | ], |
| 66 | + "python.envFile": "${workspaceFolder}/.env", |
66 | 67 | "python.pythonPath": "venv2/bin/python", |
67 | 68 | "python.formatting.provider": "yapf", |
68 | 69 | "python.formatting.yapfArgs": [ |
69 | 70 | "--style", "{based_on_style: pep8 ,indent_width: 4, column_limit: 130}", |
70 | 71 | ], |
71 | | - "python.languageServer": "Jedi", |
| 72 | + // "python.languageServer": "Jedi", |
| 73 | + "python.languageServer": "Pylance", |
72 | 74 | // "python.languageServer": "Microsoft", |
73 | | - // "python.languageServer": "Pylance", |
74 | 75 | "python.linting.enabled": true, |
75 | 76 | "python.linting.flake8Enabled": true, |
76 | 77 | "python.linting.flake8Args": [ |
|
84 | 85 | "python.testing.unittestArgs": [ |
85 | 86 | "-v", |
86 | 87 | "-s", |
87 | | - "./test", |
| 88 | + "./tests", |
88 | 89 | "-p", |
89 | 90 | "test_*.py" |
90 | 91 | ], |
91 | 92 | "python.testing.autoTestDiscoverOnSaveEnabled": true, |
92 | 93 | "python.testing.cwd": "${workspaceFolder}", |
93 | 94 | "python.testing.nosetestsEnabled": false, |
94 | 95 | "python.testing.pytestEnabled": false, |
| 96 | + "python.testing.promptToConfigure": true, |
95 | 97 | "python.testing.unittestEnabled": true, |
96 | 98 | "workbench.iconTheme": "vscode-icons", |
97 | 99 | "workbench.editor.enablePreview": true, |
|
0 commit comments