-
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
reorganize repo to more standard format #5
Conversation
@rickbeeloo, any idea why the tests would be failing on 64-bit Windows (only)?
|
@stevengj, I see now, the first thing that comes to mind is that just Windows uses |
@stevengj okay yeah it's the Probably the clean fix would be checking the OS then adjusting some code to look for The ugly fix would just be stripping I tested this by returning
Perhaps you have a better idea :) |
So, basically, the
(Unfortunately, the logic is complicated by the need to handle the rare case where |
I guess it's simpler than that because you assume that the buffers are large enough that a single line always fits within a single chunk. |
Move the tests into
test/runtests.jl
and set up to run via@test
in package testing, updatedProject.toml
with dependency info and removed obsolete dependency on StaticArrays, and set up github actions.