Skip to content

Commit

Permalink
Fix branch
Browse files Browse the repository at this point in the history
  • Loading branch information
JosePizarro3 committed Jan 9, 2025
1 parent 01cd1df commit c6f0ff3
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 23 deletions.
40 changes: 20 additions & 20 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,29 +29,29 @@
"version": "0.2.0",
"configurations": [
{
"name": "bds Python",
"type": "debugpy",
"request": "launch",
"console": "integratedTerminal",
"program": "${workspaceFolder}/src/bam_masterdata/app.py", // path to your entry point Python module
"name": "BM Python",
"type": "debugpy",
"request": "launch",
"console": "integratedTerminal",
"program": "${workspaceFolder}/bam_masterdata/metadata/entities.py", // path to your entry point Python module
},
{
"name": "bds tests",
"type": "debugpy",
"request": "launch",
"console": "integratedTerminal",
"program": "${workspaceFolder}/.venv/bin/pytest", // path to your virtual environment
"justMyCode": false,
"env": {
"_PYTEST_RAISE": "1"
},
"args": [
"-sv",
"${workspaceFolder}/tests/" // path to your testing module
]
"name": "BM tests",
"type": "debugpy",
"request": "launch",
"console": "integratedTerminal",
"program": "${workspaceFolder}/.venv/bin/pytest", // path to your virtual environment
"justMyCode": false,
"env": {
"_PYTEST_RAISE": "1"
},
"args": [
"-sv",
"${workspaceFolder}/tests/cli/test_cli.py" // path to your testing module
]
},
{
"name": "bds export-to-json",
"name": "BM export-to-json",
"type": "debugpy",
"request": "launch",
"cwd": "${workspaceFolder}",
Expand All @@ -60,7 +60,7 @@
"args": ["export-entities-to-json"]
},
{
"name": "bds export-to-excel",
"name": "BM export-to-excel",
"type": "debugpy",
"request": "launch",
"cwd": "${workspaceFolder}",
Expand Down
3 changes: 0 additions & 3 deletions bam_masterdata/metadata/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,3 @@ class CollectionType(ObjectType):

class DatasetType(ObjectType):
pass


obj = ObjectType()

1 comment on commit c6f0ff3

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tests Skipped Failures Errors Time
57 1 💤 8 ❌ 0 🔥 6.760s ⏱️

Please sign in to comment.