Skip to content

Commit

Permalink
vscode config files
Browse files Browse the repository at this point in the history
  • Loading branch information
orellabac committed Oct 17, 2023
1 parent dddf024 commit bb73cf0
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ dist/
__pycache__/
snowpark_extensions.egg-info/
extensions-py/
.ipynb_checkpoints/
.ipynb_checkpoints/
ext-env/
28 changes: 28 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false
},
{
"name": "notebook: publish",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/extras/notebooks/runner/register.py",
"console": "integratedTerminal",
"justMyCode": true,
"args": [
"--connection","json","~/credentials.json",
"--procedure","example1"
]
}
]
}
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
"python.testing.pytestEnabled": true,
"files.watcherExclude": {
"**/target": true
}
}

0 comments on commit bb73cf0

Please sign in to comment.