Conversation
|
Warning Rate limit exceeded
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 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. ✨ Finishing Touches🧪 Generate unit tests (beta)
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. Comment |
There was a problem hiding this comment.
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.envfile that setsPYTHONPATHto include./src(and preserves any existingPYTHONPATH).
💡 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 | |||
There was a problem hiding this comment.
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.
| PYTHONPATH=./src:${PYTHONPATH} | |
| PYTHONPATH=./src |
Codecov Report✅ All modified and coverable lines are covered by tests. 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. 🚀 New features to boost your workflow:
|
In addition, I added the following line to my
settings.jsonin vscode: