-
Notifications
You must be signed in to change notification settings - Fork 109
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
WIP: check CI on Julia v1.11 pre-release version #1904
Conversation
Review checklistThis checklist is meant to assist creators of PRs (to let them know what reviewers will typically look for) and reviewers (to guide them in a structured review process). Items do not need to be checked explicitly for a PR to be eligible for merging. Purpose and scope
Code quality
Documentation
Testing
Performance
Verification
Created with ❤️ by the Trixi.jl community. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1904 +/- ##
===========================================
- Coverage 96.12% 66.29% -29.84%
===========================================
Files 448 448
Lines 36081 36005 -76
===========================================
- Hits 34682 23866 -10816
- Misses 1399 12139 +10740
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
We get errors about overwritten methods, e.g., in the log here or here. The problem seems to be multiple includes of the same function definition, e.g., when looping over setups (first case) or just reusing a setup with an explicit Any idea how this can be easily fixed? For example, would it be possible (sensible) that we create a separate (anonymous?) Julia module upon each invocation of |
Ah, I see that @ranocha had the idea of anonymous modules before, but that they do not work with our structured, curvilinear files 😢 Lines 205 to 213 in b1a84a6
Any other ideas how to proceed? |
Let's just include warnings like
in the list of ignored warnings? |
Won't we risk hiding real errors with this? But in general, I do like the idea due to its simplicity 👍 |
Superseded by #1993 |
No description provided.