-
Notifications
You must be signed in to change notification settings - Fork 27
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
[Bugfix] For layer_attributes
that are dict (like color
) do key/value comparisons
#181
Merged
brisvag
merged 23 commits into
napari:main
from
psobolewskiPhD:bugfix/labels_layer_animations
Dec 14, 2023
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
05122db
do key/value comparisons for dict
psobolewskiPhD 66ef255
add test for all layers
psobolewskiPhD d273e69
formatting
psobolewskiPhD 6f812d6
use a recursive check for changes
psobolewskiPhD c295663
Skip attributes that can't be set
psobolewskiPhD ff2db17
fix double imports :eyes:
psobolewskiPhD 46adce5
flake8
psobolewskiPhD 96299e8
don't write a movie
psobolewskiPhD 58b1dba
add color attr to tests
psobolewskiPhD 2411da0
skip vscode
psobolewskiPhD 01761f8
test attributes for all layer types
psobolewskiPhD 470c685
fix fixture
psobolewskiPhD 24b54a8
skip Surface face and vertex modes that don't allow mutation
psobolewskiPhD ff31cf6
Check if surface before popping modes
psobolewskiPhD c21c760
simplify per @brisvag
psobolewskiPhD 384e2a3
ensure dict not passed to np.array_equal
psobolewskiPhD a183ce8
Use try-except to handle not settable attr
psobolewskiPhD 4df23b5
Partial revert: check for Surface mode
psobolewskiPhD e891efe
fix logic to actuall set changed attr
psobolewskiPhD 86acb74
Fix tests, drop Surface hack
psobolewskiPhD 3e3da4f
logic tweak from @brisvag
psobolewskiPhD 106365b
make an exclude list for not stored layer attr
psobolewskiPhD f5130d8
Update napari_animation/_tests/test_animation.py
psobolewskiPhD File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,3 +77,6 @@ target/ | |
|
||
# written by setuptools_scm | ||
*/_version.py | ||
|
||
# vscode | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Should this test assert something? like that an exception is not thrown? I mean if there is an exception then it's a fail--like on main with this test--so maybe this is fine?
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.
I think it's just checking that there's no exception, yes. You could add an assert later that the viewer did indeed change, but maybe that's tested elsewhere?