Skip to content

Commit beb05f6

Browse files
authored
Merge pull request #19 from jumpstarter-dev/update_devenv
Fix additional devenv issues
2 parents dbe23f2 + 8673917 commit beb05f6

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

.devcontainer/devcontainer.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,19 @@
1313
"vscode": {
1414
"extensions": [
1515
"tamasfe.even-better-toml",
16-
"ms-python.python",
1716
"ms-python.vscode-pylance",
1817
"ms-python.debugpy",
1918
"charliermarsh.ruff",
20-
"tekumara.typos-vscode"
19+
"tekumara.typos-vscode",
20+
"littlefoxteam.vscode-python-test-adapter",
21+
"hbenl.vscode-test-explorer",
22+
"ryanluker.vscode-coverage-gutters"
2123
],
2224
"settings": {
25+
"extensions.ignoreRecommendations": true,
2326
"python.defaultInterpreterPath": "~/.cache/pypoetry/virtualenvs/jumpstarter-64_PDEHR-py3.11/bin/python",
2427
"[python]": {
28+
"editor.formatOnType": true,
2529
"editor.formatOnSave": true,
2630
"editor.defaultFormatter": "charliermarsh.ruff"
2731
}

.vscode/extensions.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
{
22
"recommendations": [
33
"tamasfe.even-better-toml",
4-
"ms-python.python",
54
"ms-python.vscode-pylance",
65
"ms-python.debugpy",
76
"charliermarsh.ruff",
8-
"tekumara.typos-vscode"
7+
"tekumara.typos-vscode",
8+
"littlefoxteam.vscode-python-test-adapter",
9+
"hbenl.vscode-test-explorer",
10+
"ryanluker.vscode-coverage-gutters"
11+
],
12+
"unwantedRecommendations": [
13+
"ms-python.autopep8"
914
]
1015
}

.vscode/settings.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"python.testing.pytestArgs": [
3+
".",
4+
"--cov",
5+
"--cov-report=html",
6+
"--cov-report=xml"
7+
],
8+
"python.testing.unittestEnabled": false,
9+
"python.testing.pytestEnabled": true
10+
}

0 commit comments

Comments
 (0)