Skip to content

Commit

Permalink
Setup tester to locate local packages
Browse files Browse the repository at this point in the history
  • Loading branch information
ndaelman committed Feb 6, 2024
1 parent 5cb4353 commit b7c7723
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
// 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": "tests",
"type": "python",
"request": "launch",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}",
"env": {
"PYTHONPATH": "${workspaceFolder}/.pyenv:${env:PYTHONPATH}"
},
"pythonPath": "${command:python.interpreterPath}",
"program": "${workspaceFolder}/.pyenv/bin/pytest",
"args": [
"-s",
"-v",
"${workspaceFolder}/tests/test_hierarchy_handler.py"
]
}
]
}

Empty file added __init__.py
Empty file.

0 comments on commit b7c7723

Please sign in to comment.