-
Notifications
You must be signed in to change notification settings - Fork 28
CHORE: Cleanup unwanted files and correct coveragerc #186
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
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.
Pull Request Overview
This PR cleans up the .coveragerc configuration file by updating the list of files to omit from code coverage analysis. The changes remove one previously omitted file and add three new files to the omit list.
- Removes
mssql_python/testing_ddbc_bindings.pyfrom coverage omission - Adds
main.py,setup.py, andbcp_options.pyto the coverage omission list
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
… bewithgaurav/coveragerc_fix
Work Item / Issue Reference
Summary
This pull request updates the
.coveragercconfiguration to refine which files are omitted from coverage analysis. The main change is broadening the omission list to exclude additional top-level files from coverage reports.Coverage configuration updates:
main.py,setup.py,bcp_options.py, andtesting_ddbc_bindings.pyto the omit list in.coveragerc, ensuring these files are not included in coverage calculations.