-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
TestWikiCorpus intermittent test hangs #971
Comments
It led to a stalled build because of #956 as these lines were missing. I tried fixing it in #957 . After this merge when I tested it on my VM this outputted "ok" unlike before where it's non-outputting nature led to "No output has been received in the last 10 minutes". |
I don't believe Travis-CI invokes these tests as individual scripts (where they'd be |
Indeed, you are right. Though my solution should have fixed it. Anyways I have lodged an issue with Travis already. |
If my conjecture about how Travis-CI runs the test is right, then your solution couldn't possibly have fixed it, because the added code would not be run/relevant. |
@anmol01gulati Interesting! Unsure how that could help; perhaps some odd bit of corrupted cached files being used at Travis-CI? |
Removing an empty line has helped Travis before. We can't be doing this for every build, so issue is still open. |
* updated refactor * commit missed file * docstring added * more refactoring * add missing docstring * fix docstring format * clearer docstring * minor typo in word2vec wmdistance * pyemd error in keyedvecs * relative import of keyedvecs from word2vec fails * bug in init_sims in word2vec * property descriptors for syn0, syn0norm, index2word, vocab - fixes bug in saving * tests for loading older word2vec models * backwards compatibility for loading older models * test for syn0norm not saved to file * syn0norm not saved to file for KeyedVectors * tests and fix for accuracy * minor bug in finalized vocab check * warnings for direct syn0/syn0norm access * fixes use of most_similar in accuracy * changes logging level to ERROR in word2vec tests * renames kv to wv in word2vec * minor bugs with checking existence of syn0 * replaces syn0 and syn0norm with wv.syn0 and wv.syn0norm in tests and cython files * adds changelog * updates tests for loading word2vec models for different python versions * Added separate word2vec model explicitly for python version 3.4. * Added saved word2vec model for python 3.4 files * Removed blank line in test_wikicorpus.py * Increased window size in test_sg_hs_online * PR #986 merged in wmd in keyedvectors.py * Added deprecation warnings in Word2vec class attributes for future releases * Merged rare/develop into keyedvecs removing conflicts. * Merged rare/develop into keyedvecs and resolved conflicts. * Changed numpy to np in test_word2vec.py * Increased window size in test_cbow_hs_online * Removed blank line in test_ldamodel, work around for Travis-CI issue #971 * Removed logging during import
I've noticed a bunch of recent Travis-CI test 10-minute-hang-failures have been just after:
One example: https://travis-ci.org/RaRe-Technologies/gensim/jobs/169348681
As with other intermittent test failures, this can really confuse evaluation of unrelated changes.
Perhaps something about its multiprocessing is flaky, and should be made less-aggressive?
The text was updated successfully, but these errors were encountered: