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
{{ message }}
This repository was archived by the owner on Mar 11, 2026. It is now read-only.
Describe the issue:
The project currently lacks unit tests, which makes it difficult to ascertain the correctness and robustness of the code. With tests, it is easier to ensure that new contributions do not introduce regressions, and it is easier to refactor or expand the codebase confidently.
Additional context:
Implementing a suite of unit tests will drastically improve the maintainability and trustworthiness of the code. It would be beneficial to introduce tests covering the core functionality of the image conversion process and utility functions.
Utilizing a testing framework such as unittest or pytest would provide a structured and systematic approach to testing the project.
Is your issue a bug report or a feature request?
Describe the issue:
The project currently lacks unit tests, which makes it difficult to ascertain the correctness and robustness of the code. With tests, it is easier to ensure that new contributions do not introduce regressions, and it is easier to refactor or expand the codebase confidently.
Additional context:
Implementing a suite of unit tests will drastically improve the maintainability and trustworthiness of the code. It would be beneficial to introduce tests covering the core functionality of the image conversion process and utility functions.
Utilizing a testing framework such as
unittestorpytestwould provide a structured and systematic approach to testing the project.