-
Notifications
You must be signed in to change notification settings - Fork 13
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
switch to Julia v0.7 #16
Conversation
.travis.yml
Outdated
after_success: | ||
# push coverage results to Coveralls | ||
- julia -e 'cd(Pkg.dir("JSExpr")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.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.
No need to import JSExpr
here I don't think. It doesn't hurt though.
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.
fixed
Codecov Report
@@ Coverage Diff @@
## master #16 +/- ##
======================================
+ Coverage 84.49% 90% +5.5%
======================================
Files 2 2
Lines 129 100 -29
======================================
- Hits 109 90 -19
+ Misses 20 10 -10
Continue to review full report at Codecov.
|
Ok, all green! |
Can I merge this and tag a release? |
Yes please |
This involves more subtle macro expansion changes, as I think
@__MODULE__()
is not exactly the same ascurrent_module()
, but it does appear to work so far...Closes #12 (actually already fixed)