Skip to content

Add development environment#471

Draft
jan-janssen wants to merge 1 commit intomainfrom
devenv
Draft

Add development environment#471
jan-janssen wants to merge 1 commit intomainfrom
devenv

Conversation

@jan-janssen
Copy link
Copy Markdown
Member

In addition, I added the following line to my settings.json in vscode:

{
    "python.envFile": "${workspaceFolder}/dev.env",
}

Copilot AI review requested due to automatic review settings March 27, 2026 09:23
@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Mar 27, 2026

Warning

Rate limit exceeded

@jan-janssen has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 5 minutes and 7 seconds before requesting another review.

Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 5 minutes and 7 seconds.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 6ba506d8-7ae8-4d24-9baf-daa917de8776

📥 Commits

Reviewing files that changed from the base of the PR and between 684c115 and 10fa35d.

📒 Files selected for processing (1)
  • dev.env
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch devenv

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown
Contributor

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–consumable development environment file intended to make local imports resolve against the src/ tree during development.

Changes:

  • Introduces a dev.env file that sets PYTHONPATH to include ./src (and preserves any existing PYTHONPATH).

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

@@ -0,0 +1 @@
PYTHONPATH=./src:${PYTHONPATH} No newline at end of file
Copy link

Copilot AI Mar 27, 2026

Choose a reason for hiding this comment

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

This PYTHONPATH entry uses : as the path separator, which will not work on Windows (the repo CI runs on windows-latest). If this file is meant to be shared across devs, consider either avoiding PYTHONPATH (e.g., rely on editable installs / VS Code python.analysis.extraPaths) or providing a platform-specific alternative so Windows users don’t end up with a broken import path.

Suggested change
PYTHONPATH=./src:${PYTHONPATH}
PYTHONPATH=./src

Copilot uses AI. Check for mistakes.
@codecov
Copy link
Copy Markdown

codecov bot commented Mar 27, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 82.69%. Comparing base (f76f7f2) to head (10fa35d).
⚠️ Report is 5 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #471      +/-   ##
==========================================
- Coverage   82.85%   82.69%   -0.17%     
==========================================
  Files          25       25              
  Lines        1820     1832      +12     
==========================================
+ Hits         1508     1515       +7     
- Misses        312      317       +5     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@jan-janssen jan-janssen marked this pull request as draft March 27, 2026 09:33
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