-
Notifications
You must be signed in to change notification settings - Fork 171
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
Fix travis build running twice the test suite #519
Fix travis build running twice the test suite #519
Conversation
This shows in travis that the `vm` test suite actually runs twice.
…e it more generic
Codecov Report
@@ Coverage Diff @@
## master #519 +/- ##
==========================================
- Coverage 83.62% 32.82% -50.8%
==========================================
Files 52 52
Lines 9111 9111
==========================================
- Hits 7619 2991 -4628
- Misses 1257 5967 +4710
+ Partials 235 153 -82
Continue to review full report at Codecov.
|
@saveriomiroddi It seems that the new script doesn't import test coverage data properly, so the coverage is now down to 32%. |
I should've noticed this before merge. I thought the 32% is about target coverage 😫 |
This is very likely caused by the original script having a bug also in the coverage calculation; in this case, it should be because the strategy used:
doesn't work as intended, for some reason. |
Um.....this should be fixed ASAP. I'm investigating now. |
It's hard to work on this area (full testing) without the database setup. I'll work on setting up the database next, and I'll put the instructions on the wiki. |
If you already have PG installed and have a proper PG role/user, run these commands and it should work:
|
During the last attempt, things didn't turn out to be trivial overall, I'll need to review it. |
I think I found the reason, the command that runs all vm tests doesn’t generate profile result. |
Fixes #518