Skip to content

Add workspace settings for Python development#30

Closed
renefs wants to merge 0 commit intocern-vc:developfrom
renefs:develop
Closed

Add workspace settings for Python development#30
renefs wants to merge 0 commit intocern-vc:developfrom
renefs:develop

Conversation

@renefs
Copy link
Member

@renefs renefs commented Feb 12, 2026

No description provided.

Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Adds a VS Code workspace file to centralize Python development settings and removes the repo-scoped .vscode/settings.json.

Changes:

  • Add zoom-python-client.code-workspace with Python analysis, formatting, testing, and search/file exclude settings.
  • Remove .vscode/settings.json in favor of the workspace file.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.

File Description
zoom-python-client.code-workspace Introduces VS Code workspace configuration (Python analysis, pytest args, formatter/import organization, extension recommendations).
.vscode/settings.json Removes existing VS Code folder settings, effectively migrating them into the workspace file.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

"python.testing.pytestArgs": [
"tests",
"-vv",
"--cov=app",
Copy link

Copilot AI Feb 12, 2026

Choose a reason for hiding this comment

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

python.testing.pytestArgs includes --cov=app, but this project’s package is zoom_python_client (and pytest.ini already sets --cov zoom_python_client). As-is, running tests from VS Code will produce incorrect/empty coverage (or warnings). Update/remove this arg to match the actual package under test.

Suggested change
"--cov=app",

Copilot uses AI. Check for mistakes.
"ms-python.black-formatter",
"ms-python.flake8",
"ms-python.mypy-type-checker",
"ms-python.debugpy"
Copy link

Copilot AI Feb 12, 2026

Choose a reason for hiding this comment

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

Workspace settings configure isort.check/isort.args, but the workspace only recommends Black/Flake8/Mypy/Debugpy extensions. Consider adding the ms-python.isort extension to extensions.recommendations so these settings take effect for contributors.

Suggested change
"ms-python.debugpy"
"ms-python.debugpy",
"ms-python.isort"

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants