Skip to content

Commit

Permalink
Update tasks.json to use 'uv' before pip install and pytest commands
Browse files Browse the repository at this point in the history
  • Loading branch information
timmo001 committed Apr 14, 2024
1 parent 510285a commit 9f05777
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,18 @@
"type": "shell",
"label": "pip install",
"command": "uv pip install .",
"dependsOn": ["pip install requirements"]
},
{
"type": "shell",
"label": "pip install requirements",
"command": "uv pip sync requirements.txt",
"dependsOn": []
},
{
"type": "shell",
"label": "pip install test requirements",
"command": "uv pip install -r requirements_test.txt",
"command": "uv pip sync requirements_test.txt",
"dependsOn": ["pip install"]
},
{
Expand Down

0 comments on commit 9f05777

Please sign in to comment.