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
Description:
The execexam tool currently displays all of the Python files instead of just test files when measuring coverage. The coverage checks are also inaccurate and can say that there is 100% coverage for files that have 0 tests.
Expected Behavior:
The poetry run task coverage command should return fully accurate coverage monitoring for all test files.
Actual Behavior:
The poetry run task coverage command returns coverage for all files. The coverage can also be inaccurate, as described above.
Proposed Solution:
Change the command that is run in the pyproject.toml file to only report coverage for test cases and work to ensure that this coverage is accurate.
The text was updated successfully, but these errors were encountered:
Description:
The execexam tool currently displays all of the Python files instead of just test files when measuring coverage. The coverage checks are also inaccurate and can say that there is 100% coverage for files that have 0 tests.
Expected Behavior:
The
poetry run task coverage
command should return fully accurate coverage monitoring for all test files.Actual Behavior:
The
poetry run task coverage
command returns coverage for all files. The coverage can also be inaccurate, as described above.Proposed Solution:
Change the command that is run in the pyproject.toml file to only report coverage for test cases and work to ensure that this coverage is accurate.
The text was updated successfully, but these errors were encountered: