We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This happens because include is being called in a loop:
include
AWS.jl/test/runtests.jl
Lines 63 to 75 in d7e4dca
Should be fixable by putting the tests for the different backends in their own module, e.g. have the loop body be something like
M = Module() Core.include(M, "file1") Core.include(M, "file2")
The annoying thing is just making sure that those modules load the packages they need and bring in things defined at the top level.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
This happens because
include
is being called in a loop:AWS.jl/test/runtests.jl
Lines 63 to 75 in d7e4dca
Should be fixable by putting the tests for the different backends in their own module, e.g. have the loop body be something like
The annoying thing is just making sure that those modules load the packages they need and bring in things defined at the top level.
The text was updated successfully, but these errors were encountered: