Skip to content

Commit

Permalink
disable Keras tests
Browse files Browse the repository at this point in the history
  • Loading branch information
piskvorky committed Jul 30, 2020
1 parent 4c1b3f7 commit b39eec2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gensim/test/test_keras_integration.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest

import numpy as np
from gensim.models import word2vec

try:
from sklearn.datasets import fetch_20newsgroups
Expand All @@ -21,8 +21,10 @@
raise unittest.SkipTest("Test requires Keras to be installed, which is not available")

from gensim.test.utils import common_texts
from gensim.models import word2vec


@unittest.skip("FIXME strange Keras errors in py3.7+")
class TestKerasWord2VecWrapper(unittest.TestCase):
def setUp(self):
self.model_cos_sim = word2vec.Word2Vec(common_texts, vector_size=100, min_count=1, hs=1)
Expand Down

0 comments on commit b39eec2

Please sign in to comment.