Skip to content

Commit

Permalink
skip checking directories. It failed at unittest anyway.
Browse files Browse the repository at this point in the history
  • Loading branch information
ummae committed Sep 2, 2019
1 parent 138d7ae commit 983f9ac
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions tests/algo/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,16 +65,8 @@ def train(self):
class TestBase(unittest.TestCase):
@classmethod
def setUpClass(cls):
if not os.path.isdir('ext/ml-100k/'):
raise RuntimeError('Cannot find the ./ext/ml-100k directory')
cls.ml_100k = './ext/ml-100k/'

if not os.path.isdir('ext/ml-20m'):
raise RuntimeError('Cannot find the ./ext/ml-20m directory')
cls.ml_20m = './ext/ml-20m/'

if not os.path.isdir('ext/text8'):
raise RuntimeError('Cannot find the ./ext/text8 directory')
cls.text8 = './ext/text8/'
cls.temp_files = []

Expand Down

0 comments on commit 983f9ac

Please sign in to comment.