Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 426abfb

Browse files
authored
use devcontainer image to speed up build
1 parent 03c767b commit 426abfb

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.devcontainer/devcontainer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@
2323
"GitHub.copilot"
2424
],
2525
"settings": {
26-
"python.defaultInterpreterPath": "/usr/local/py-utils/bin/python",
26+
"python.defaultInterpreterPath": "/usr/local/bin/python",
2727
"python.formatting.provider": "black",
2828
"[python]": {
2929
"editor.defaultFormatter": "ms-python.black-formatter"
3030
},
3131
"black-formatter.path": [
32-
"/usr/local/py-utils/bin/black"
32+
"/usr/local/bin/black"
3333
],
3434
"pylint.path": [
35-
"/usr/local/py-utils/bin/pylint"
35+
"/usr/local/bin/pylint"
3636
],
3737
"flake8.path": [
38-
"/usr/local/py-utils/bin/flake8"
38+
"/usr/local/bin/flake8"
3939
]
4040
}
4141
}

.vscode/settings.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,5 @@
3131
],
3232
"flake8.path": [
3333
"/usr/local/bin/flake8"
34-
],
35-
"python.testing.autoTestDiscoverOnSaveEnabled": false
34+
]
3635
}

0 commit comments

Comments
 (0)