File tree Expand file tree Collapse file tree 3 files changed +20
-16
lines changed Expand file tree Collapse file tree 3 files changed +20
-16
lines changed Original file line number Diff line number Diff line change 1- FROM rofrano/nyu-devops-base:su23
1+ FROM rofrano/nyu-devops-base:fa23
22
33# Add Python package requiremnets to the dev environment
44WORKDIR /app
Original file line number Diff line number Diff line change 77 "remoteUser" : " vscode" ,
88 "customizations" : {
99 "vscode" : {
10+ "settings" : {
11+ "[python]" : {
12+ "editor.defaultFormatter" : " ms-python.black-formatter" ,
13+ "editor.formatOnSave" : true
14+ },
15+ "python.linting.enabled" : true ,
16+ "python.linting.pylintEnabled" : true ,
17+ "markdown-preview-github-styles.colorTheme" : " light" ,
18+ "files.exclude" : {
19+ "**/.git" : true ,
20+ "**/.DS_Store" : true ,
21+ "**/*.pyc" : true ,
22+ "**/__pycache__" : true ,
23+ "**/.pytest_cache" : true
24+ }
25+ },
1026 "extensions" : [
1127 " VisualStudioExptTeam.vscodeintellicode" ,
1228 " ms-python.python" ,
1329 " ms-python.pylint" ,
1430 " ms-python.vscode-pylance" ,
15- " alexkrechik.cucumberautocomplete" ,
1631 " cstrap.flask-snippets" ,
1732 " yzhang.markdown-all-in-one" ,
1833 " bierner.github-markdown-preview" ,
3146 " bbenoist.vagrant"
3247 ]
3348 }
34- },
49+ }
3550 // "forwardPorts": [8000],
3651 // "postCreateCommand": ""
3752}
Original file line number Diff line number Diff line change 33 "makefile.extensionOutputFolder" : " ./.vscode" ,
44 "git.mergeEditor" : true ,
55 "python.pythonPath" : " /usr/local/bin/python" ,
6- "python.linting.enabled" : true ,
7- "python.linting.pylintEnabled" : true ,
8- "python.testing.pytestEnabled" : false ,
6+ "python.testing.pytestEnabled" : true ,
97 "python.testing.unittestEnabled" : true ,
108 "python.testing.unittestArgs" : [
119 " -v" ,
1210 " -s" ,
1311 " ./tests" ,
1412 " -p" ,
1513 " test*.py"
16- ],
17- "files.exclude" : {
18- "**/.git" : true ,
19- "**/.svn" : true ,
20- "**/.hg" : true ,
21- "**/CVS" : true ,
22- "**/.DS_Store" : true ,
23- "**/*.pyc" : true ,
24- "**/__pycache__" : true
25- }
14+ ]
2615}
You can’t perform that action at this time.
0 commit comments