Skip to content

Commit

Permalink
Merge pull request #1410 from parulsethi/fix_wordrank_test
Browse files Browse the repository at this point in the history
Fix wordrank tests
  • Loading branch information
menshikh-iv authored Jun 13, 2017
2 parents 728697a + 2a5d048 commit 85d8ba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gensim/test/test_wordrank_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def setUp(self):
self.wr_file = datapath('test_glove.txt')
if not self.wr_path:
return
self.test_model = wordrank.Wordrank.train(self.wr_path, self.corpus_file, self.out_name, iter=6, dump_period=5, period=5)
self.test_model = wordrank.Wordrank.train(self.wr_path, self.corpus_file, self.out_name, iter=6, dump_period=5, period=5, cleanup_files=True)

def testLoadWordrankFormat(self):
"""Test model successfully loaded from Wordrank format file"""
Expand Down

0 comments on commit 85d8ba1

Please sign in to comment.