You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Only 69% of the repository is covered with some modules lacking coverage.
Describe the solution you'd like
Add more unittests to improve coverage. This will help give us peace of mind when refactoring in the future or making changes for OSB 2.0.0 because we will know if we are introducing breaking changes. For areas with low coverage, we should aim to bring them up to at least 60-75% coverage.
It's important to note that high code coverage percentage does not guarantee high quality code coverage. However, low code coverage percentage informs us that areas of the code are untested. More importantly, we should ensure that the essential areas are properly covered by high quality tests.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe
When users run
pytest --cov=.
within the OSB repository, they get the following output.Only 69% of the repository is covered with some modules lacking coverage.
Describe the solution you'd like
Add more unittests to improve coverage. This will help give us peace of mind when refactoring in the future or making changes for OSB 2.0.0 because we will know if we are introducing breaking changes. For areas with low coverage, we should aim to bring them up to at least 60-75% coverage.
It's important to note that high code coverage percentage does not guarantee high quality code coverage. However, low code coverage percentage informs us that areas of the code are untested. More importantly, we should ensure that the essential areas are properly covered by high quality tests.
The text was updated successfully, but these errors were encountered: