-
-
Notifications
You must be signed in to change notification settings - Fork 10
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
typos + Aqua CI #138
typos + Aqua CI #138
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #138 +/- ##
==========================================
- Coverage 94.24% 0.27% -93.98%
==========================================
Files 7 7
Lines 365 362 -3
==========================================
- Hits 344 1 -343
- Misses 21 361 +340 ☔ View full report in Codecov by Sentry. |
That's a shocking amount of typos detected by spell check.😅🙈 |
@paulflang can you look into getting tests fixed here? All I did was update the retcode check SciML/SBMLToolkitTestSuite.jl#20 and it's failing. It would be good to keep master passing, even if it's just marking a test as broken. But here, I'm a bit confused on why anything would break: the numbers shouldn't change due to that. |
@ChrisRackauckas this probably has to do with an update in the dependencies. Here is a MWE that reproduces the error: using DataFrames, ModelingToolkit, OrdinaryDiffEq
@variables t x(t)=1
D = Differential(t)
eqs = [D(x) ~ -x]
@named sys = ODESystem(eqs)
prob = ODEProblem(sys)
sol = solve(prob, Tsit5(), tspan=(0.0, 1.0))
df = DataFrame(sol) # worked before, doesn't work now
Is this known? Do you know if/when it will be fixed? |
That is not known. @AayushSabharwal did you test the dataframe generation? I can see an SII change in there. https://github.com/SciML/SciMLBase.jl/blob/master/src/tabletraits.jl#L28 |
Table traits test passes. I'll look into the issue |
No description provided.