-
Notifications
You must be signed in to change notification settings - Fork 287
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: compute audit progress taking into account selected implementation groups #1406
feat: compute audit progress taking into account selected implementation groups #1406
Conversation
WalkthroughThe pull request introduces modifications to the Changes
Poem
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
backend/core/models.py (1)
3231-3242
: Consider optimizing the progress calculation.The current implementation creates an intermediate list just to count elements. Consider using a generator expression to avoid the unnecessary list creation:
- requirement_assessments = list( - self.get_requirement_assessments(include_non_assessable=False) - ) - total_cnt = len(requirement_assessments) - assessed_cnt = len( - [ - r - for r in requirement_assessments - if r.result != RequirementAssessment.Result.NOT_ASSESSED - ] - ) + requirement_assessments = self.get_requirement_assessments(include_non_assessable=False) + total_cnt = sum(1 for _ in requirement_assessments) + assessed_cnt = sum( + 1 for r in requirement_assessments + if r.result != RequirementAssessment.Result.NOT_ASSESSED + )
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
backend/core/models.py
(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (11)
- GitHub Check: startup-functional-test (3.12)
- GitHub Check: Analyze (python)
- GitHub Check: Analyze (javascript-typescript)
- GitHub Check: startup-docker-compose-test
- GitHub Check: enterprise-functional-tests (3.12, chromium)
- GitHub Check: ruff (3.12)
- GitHub Check: enterprise-startup-functional-test (3.12)
- GitHub Check: functional-tests (3.12, chromium)
- GitHub Check: enterprise-startup-docker-compose-test
- GitHub Check: test (3.12)
- GitHub Check: build (3.12)
🔇 Additional comments (1)
backend/core/models.py (1)
3231-3242
: LGTM! The progress calculation correctly handles assessable requirements.The changes improve the progress calculation by:
- Using
get_requirement_assessments(include_non_assessable=False)
to filter out non-assessable requirements- Using list comprehension for better readability
- Handling the edge case when there are no requirements
Summary by CodeRabbit