-
Notifications
You must be signed in to change notification settings - Fork 35
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 failing tests #623
Fix failing tests #623
Conversation
Joy, tests fail only on 32 bit systems, apparently :) |
Ugh, it's all these subtle differences in the output of doctests ... I'll work on it. |
This is sucking up a lot of time, though... I wish there was some way to run doctests, but only run them, not check their output. Or maybe that can be done? I think that would be good enough for us? |
I believe what Cora and I concluded is that we can’t use a flag, but most of the time can use a regular expression and the |
Codecov Report
@@ Coverage Diff @@
## master #623 +/- ##
=======================================
Coverage 80.12% 80.12%
=======================================
Files 39 39
Lines 2732 2732
=======================================
Hits 2189 2189
Misses 543 543 Continue to review full report at Codecov.
|
You probably saw this already: JuliaDocs/Documenter.jl#452 (comment) |
I haven't tried out the fixing outdated doctests yet, but yes we use the filter suggested in the second link to compare against nothing but still check if the test fails. I think this branch might be set now, but not sure because it's failing before it gets to the doctests due to some compat error. I am curious about the outdated doctests. I think one issue is sometimes the output is slightly different on different machines and Julia versions, so sometimes it'll pass on my machine but fail one of the tests ... which is why I punted on some and just filtered the output so it's ignored. |
Alright, I think we are back to failing doctests? |
@davidanthoff I'm getting some frustrating and unpredictable stalling of tests that doesn't seem to be related to our stuff at all ... going to give it a day or two and see if it fixes. All of our tests should run fine, so this will get master passing again and allow us to properly test other PRs. |
Wait, it all worked? Hurray!!! I thought this saga would never end ;) |
Well ... I thought it worked because it let me merge but now I'm worried master isn't going to work because I think two were still pending. Cross your fingers. |
The saga may continue. But I have no clue what is going on if it doesn't work, all the tests pass and I removed all the doctesting of |
reminder to myself: get all tests passing without doctesting
explore
andplot
and then try to put those back in in another PR...