Skip to content

Commit

Permalink
set cleanup_files True for wordrank tests
Browse files Browse the repository at this point in the history
  • Loading branch information
parulsethi committed Jun 12, 2017
1 parent b5210ab commit 2a5d048
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 2a5d048

Please sign in to comment.