-
Notifications
You must be signed in to change notification settings - Fork 2
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
Python tests 2: Streaming boogaloo #12
Conversation
…LD_TESTING` cmake option.
a884c62
to
eee52c1
Compare
pyproject.toml
Outdated
] | ||
|
||
[tool.black] | ||
target-version = ['py39', 'py310', 'py311'] |
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 just want to point out that Ubuntu 24.04 uses v3.12. It isn't critical for me, as I'm using C++, but wanted you to know in case there was a user-base that was interested.
), | ||
], | ||
) | ||
@pytest.mark.skip(reason="Temporary; needs debugging") |
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 just want to confirm that we're skipping this test (and thus it will not be reviewed)?
src/streaming/zarr.stream.cpp
Outdated
@@ -882,7 +881,8 @@ ZarrStream_s::write_multiscale_frames_(const std::byte* data, | |||
return; | |||
} | |||
|
|||
std::function<std::byte*(const std::byte*, size_t&, size_t&, size_t&)> scale; | |||
std::function<std::byte*(const std::byte*, size_t&, size_t&, size_t&)> | |||
scale; |
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.
trivial: this seems less readable than what it was before.
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.
Artifact of automatically formatting on save, I guess.
PyZarrStreamSettings::__repr__
definition