mirror of
https://github.com/initialcommit-com/git-sim.git
synced 2026-04-26 19:15:51 +03:00
[GH-ISSUE #99] Refine test suite #58
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/git-sim#58
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ehmatthes on GitHub (Jul 17, 2023).
Original GitHub issue: https://github.com/initialcommit-com/git-sim/issues/99
The initial test suite has been developed, and is starting to become useful in ongoing development work. There are a few smaller tasks that would help improve the test suite, so it doesn't take any more maintenance attention than it needs.
Keep in mind that principles like DRY don't apply the same to testing as they do to general software development. When a test fails, you really want that test to be as easy to understand as possible.
Let's aim to make some refinements, and then close this so that most of the focus is on ongoing development.
@ehmatthes commented on GitHub (Jul 17, 2023):
Initial refinements
compare_images()? It's already a dependency of the project; it may provide a better measure of the correctness of generated images.raw_cmdmight be worth looking at. See #100.--test-current-releaseflag that will install git-sim from PyPI instead of using the local editable install. This can be nice to run immediately after making a release, and you can test different package managers as well.@micwoj92 commented on GitHub (Feb 19, 2025):
Could you consider running tests without using venv for this refinement?