-
Notifications
You must be signed in to change notification settings - Fork 8
Merge test results into models #94
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
Conversation
PR Reviewer Guide 🔍(Review updated until commit d6bcdbd)Here are some key observations to aid the review process:
|
PR Code Suggestions ✨No code suggestions found for the PR. |
Persistent review updated to latest commit d6bcdbd |
PR Code Suggestions ✨No code suggestions found for the PR. |
User description
merged test_results.py into models.py to avoid circular imports. Also refactored out some logic from CoverageData into CoverageUtils so we don't clutter the models.py file
PR Type
Description
Integrated test result and verification types into models.
Removed deprecated test_results module.
Redirected and refactored imports across modules.
Introduced CoverageUtils for coverage handling.
Changes walkthrough 📝
11 files
Updated import for VerificationType from models.
Replaced test_results import with models import.
Adjusted import to fetch TestResults from models.
Updated imports to use TestResults and TestType from models.
Modified import order and consolidated ValidCode usage.
Changed TestType import to retrieve from models.
Updated TestResults import from models.
Altered VerificationType import to reference models.
Adjusted import ordering; moved to models for test types.
Redirected sqlite coverage loading to CoverageUtils.
Updated TestFiles and TestType imports from models.
2 files
Added VerificationType, TestType, and test result classes.
New module: CoverageUtils for sqlite coverage extraction.
1 files
Removed redundant test_results module; functionality moved to models.
8 files
Revised imports to include new TestType and VerificationType.
Updated import to use models for test result classes.
Refactored imports for FunctionTestInvocation and TestResults.
Switched to models for CodePosition, FunctionParent, and TestType.
Extended imports with TestType and TestsInFile from models.
Updated imports to use models for test results and verification.
Changed merge test results to use models for FunctionTestInvocation.
Modified imports to retrieve TestFile and TestType from models.