Skip to content

Commit

Permalink
Add VS Code project config
Browse files Browse the repository at this point in the history
  • Loading branch information
rfaircloth-splunk committed Feb 7, 2020
1 parent a34fc1a commit 0abe7a8
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
// 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": "Setup Project",
"type": "python",
"request": "launch",
"module": "venv",
"args": ["venv"]
},
{
"name": "Setup Requirements",
"type": "python",
"request": "launch",
"module": "pip",
"args": [
"install",
"-r",
"requirements.txt"]
}
]
}
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"python.pythonPath": "venv/bin/python3",
"python.testing.pytestEnabled": true,
"python.testing.autoTestDiscoverOnSaveEnabled": true
}

0 comments on commit 0abe7a8

Please sign in to comment.