-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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
Make coveralls watch the include folder #957
Conversation
d137c2f
to
35c0fdf
Compare
35c0fdf
to
d789f65
Compare
The latest Coveralls job passed: https://coveralls.io/jobs/33439123 Could you retry the Travis job that failed? Seems like a spurious failure... |
Oops, seems my fix didn't fix anything after all... EDIT: That's a shameful typo, missing |
ad29f12
to
70c7ba6
Compare
This is how Coveralls looks like right now. The 0% at the top is strange - and this is also the number reported in this PR. Any idea how this can be fixed? |
That's very strange, maybe because we give |
d0c7396
to
77eafce
Compare
I might become crazy with Coveralls... @nlohmann I remember I could try locally before, but the private repo's token has been moved from the repo files (which is good!) Could you try to fix this one? Running Travis for hours to finally see a big fat 0.0% is quite frustrating... |
I'll have a look. |
77eafce
to
6f8e395
Compare
It seems CMake does not go well with environment variables which contains spaces... Hence the |
6f8e395
to
41db7cd
Compare
I think it's good now, finally! |
@@ -281,14 +282,16 @@ script: | |||
|
|||
# make sure CXX is correctly set | |||
- if [[ "${COMPILER}" != "" ]]; then export CXX=${COMPILER}; fi | |||
# by default, use the single-header version | |||
- if [[ "${MULTIPLE_HEADERS}" == "" ]]; then export MULTIPLE_HEADERS=OFF; fi |
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.
I did not think of this trick. Well done!
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.
Looks good to me.
Should be enough to fix it.