-
Notifications
You must be signed in to change notification settings - Fork 32
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
0.7patch #72
Conversation
Codecov Report
@@ Coverage Diff @@
## master #72 +/- ##
==========================================
- Coverage 94.7% 93.03% -1.68%
==========================================
Files 6 6
Lines 302 287 -15
==========================================
- Hits 286 267 -19
- Misses 16 20 +4
Continue to review full report at Codecov.
|
.travis.yml
Outdated
|
||
after_script: | ||
# push coverage results to Codecov and Coveralls | ||
- julia -e 'using Pkg, StatsModels; cd(joinpath(dirname(pathof(StatsModels)), "..")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder()); Coveralls.submit(process_folder())' |
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.
This can actually be simplified to just
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder()); Codecov.submit(process_folder())'
.travis.yml
Outdated
- julia -e 'using Pkg, StatsModels; cd(joinpath(dirname(pathof(StatsModels)), "..")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder()); Coveralls.submit(process_folder())' | ||
# Update the documentation | ||
- julia -e 'using Pkg; Pkg.add("Documenter")' | ||
- julia -e 'using StatsModels; ENV["DOCUMENTER_DEBUG"] = "true"; include(joinpath(dirname(pathof(StatsModels)), "..", "docs", "make.jl"))' |
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.
Similarly this need only be
- julia -e 'using Pkg; include(joinpath("docs", "make.jl"))'
The DOCUMENTER_DEBUG
environment variable can be set explicitly as a Travis environment variable.
Thanks! |
And thanks for the review and the corrections. |
I second releasing a patch version with the missed 0.7 deprecation fix. |
One change for Julia v0.7 in
src/modelmatrix.jl
that I had missed earlier. While making that change I also brought the CI script files up to date.I would really appreciate this PR being merged as it will allow the
MixedModels
package to pass tests on Julia 1.0. I know that @kleinschmidt has the Terms 2.0 branch for the future of StatsModels. This fix is just so that I can release a new version of MixedModels