Skip to content

Commit

Permalink
Update python debugger configuration (#7634)
Browse files Browse the repository at this point in the history
### Motivation and context
The old python debugger configuration will soon be deprecated so I
changed it to use debugpy which is the new configuration.

### Checklist
<!-- Go over all the following points, and put an `x` in all the boxes
that apply.
If an item isn't applicable for some reason, then ~~explicitly
strikethrough~~ the whole
line. If you don't do that, GitHub will show incorrect progress for the
pull request.
If you're unsure about any of these, don't hesitate to ask. We're here
to help! -->
- [x] I submit my changes into the `develop` branch
- [ ] I have created a changelog fragment <!-- see top comment in
CHANGELOG.md -->

### License

- [x] I submit _my code changes_ under the same [MIT License](
https://github.com/opencv/cvat/blob/develop/LICENSE) that covers the
project.
  Feel free to contact the maintainers if that's a concern.

Co-authored-by: syedbarimanjan <[email protected]>
Co-authored-by: Maxim Zhiltsov <[email protected]>
  • Loading branch information
3 people authored Mar 21, 2024
1 parent dd64046 commit 68ba436
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"configurations": [
{
"name": "REST API tests: Attach to server",
"type": "python",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "127.0.0.1",
Expand All @@ -26,7 +26,7 @@
},
{
"name": "REST API tests: Attach to RQ annotation worker",
"type": "python",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "127.0.0.1",
Expand All @@ -46,7 +46,7 @@
},
{
"name": "REST API tests: Attach to RQ export worker",
"type": "python",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "127.0.0.1",
Expand All @@ -66,7 +66,7 @@
},
{
"name": "REST API tests: Attach to RQ import worker",
"type": "python",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "127.0.0.1",
Expand All @@ -86,7 +86,7 @@
},
{
"name": "REST API tests: Attach to RQ quality reports worker",
"type": "python",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "127.0.0.1",
Expand All @@ -106,7 +106,7 @@
},
{
"name": "REST API tests: Attach to RQ analytics reports worker",
"type": "python",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "127.0.0.1",
Expand Down Expand Up @@ -158,7 +158,7 @@
},
{
"name": "server: django",
"type": "python",
"type": "debugpy",
"request": "launch",
"stopOnEntry": false,
"justMyCode": false,
Expand Down Expand Up @@ -196,7 +196,7 @@
},
{
"name": "server: RQ - import",
"type": "python",
"type": "debugpy",
"request": "launch",
"stopOnEntry": false,
"justMyCode": false,
Expand All @@ -218,7 +218,7 @@
},
{
"name": "server: RQ - export",
"type": "python",
"type": "debugpy",
"request": "launch",
"stopOnEntry": false,
"justMyCode": false,
Expand All @@ -240,7 +240,7 @@
},
{
"name": "server: RQ - quality reports",
"type": "python",
"type": "debugpy",
"request": "launch",
"stopOnEntry": false,
"justMyCode": false,
Expand All @@ -262,7 +262,7 @@
},
{
"name": "server: RQ - analytics reports",
"type": "python",
"type": "debugpy",
"request": "launch",
"stopOnEntry": false,
"justMyCode": false,
Expand All @@ -284,7 +284,7 @@
},
{
"name": "server: RQ - scheduler",
"type": "python",
"type": "debugpy",
"request": "launch",
"stopOnEntry": false,
"justMyCode": false,
Expand All @@ -303,7 +303,7 @@
},
{
"name": "server: RQ - annotation",
"type": "python",
"type": "debugpy",
"request": "launch",
"justMyCode": false,
"stopOnEntry": false,
Expand All @@ -322,7 +322,7 @@
},
{
"name": "server: RQ - webhooks",
"type": "python",
"type": "debugpy",
"request": "launch",
"justMyCode": false,
"stopOnEntry": false,
Expand All @@ -341,7 +341,7 @@
},
{
"name": "server: RQ - cleaning",
"type": "python",
"type": "debugpy",
"request": "launch",
"stopOnEntry": false,
"justMyCode": false,
Expand All @@ -363,7 +363,7 @@
},
{
"name": "server: migrate",
"type": "python",
"type": "debugpy",
"request": "launch",
"justMyCode": false,
"stopOnEntry": false,
Expand All @@ -379,7 +379,7 @@
},
{
"name": "server: tests",
"type": "python",
"type": "debugpy",
"request": "launch",
"justMyCode": false,
"stopOnEntry": false,
Expand All @@ -399,7 +399,7 @@
},
{
"name": "server: REST API tests",
"type": "python",
"type": "debugpy",
"request": "launch",
"justMyCode": false,
"stopOnEntry": false,
Expand All @@ -413,7 +413,7 @@
},
{
"name": "sdk: tests",
"type": "python",
"type": "debugpy",
"request": "launch",
"justMyCode": false,
"stopOnEntry": false,
Expand All @@ -427,7 +427,7 @@
},
{
"name": "cli: tests",
"type": "python",
"type": "debugpy",
"request": "launch",
"justMyCode": false,
"stopOnEntry": false,
Expand All @@ -441,7 +441,7 @@
},
{
"name": "api client: Postprocess generator output",
"type": "python",
"type": "debugpy",
"request": "launch",
"justMyCode": false,
"stopOnEntry": false,
Expand All @@ -456,7 +456,7 @@
},
{
"name": "docs: Postprocess SDK docs",
"type": "python",
"type": "debugpy",
"request": "launch",
"justMyCode": false,
"stopOnEntry": false,
Expand All @@ -471,7 +471,7 @@
},
{
"name": "docs: Build docs",
"type": "python",
"type": "debugpy",
"request": "launch",
"justMyCode": false,
"stopOnEntry": false,
Expand All @@ -482,7 +482,7 @@
},
{
"name": "server: Generate REST API Schema",
"type": "python",
"type": "debugpy",
"request": "launch",
"justMyCode": false,
"stopOnEntry": false,
Expand Down

0 comments on commit 68ba436

Please sign in to comment.