-
Notifications
You must be signed in to change notification settings - Fork 961
Expand file tree
/
Copy pathsettings.json
More file actions
41 lines (41 loc) · 1.09 KB
/
settings.json
File metadata and controls
41 lines (41 loc) · 1.09 KB
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
31
32
33
34
35
36
37
38
39
40
41
{
"sqltools.connections": [
{
"previewLimit": 50,
"server": "localhost",
"port": 5432,
"driver": "PostgreSQL",
"name": "local",
"database": "postgres",
"username": "admin",
"password": "postgres"
},
{
"name": "Azure database",
"driver": "PostgreSQL",
"server": "<HOSTNAME>.postgres.database.azure.com",
"port": 5432,
"database": "postgres",
"username": "<USERNAME>",
"askForPassword": true,
"pgOptions": {
"ssl": true
}
}
],
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.envFile": "",
"files.exclude": {
".ruff_cache": true,
".pytest_cache": true,
"__pycache__": true,
"htmlcov": true,
".mypy_cache": true,
".coverage": true
},
"python-envs.defaultEnvManager": "ms-python.python:system"
}