* Skip pickling the vocab in the tests

This commit is contained in:
Matthew Honnibal 2016-02-04 15:51:19 +01:00
parent 419edfab50
commit 48ce09687d

View File

@ -45,6 +45,7 @@ def test_symbols(en_vocab):
assert en_vocab.strings['PROB'] == PROB
@pytest.mark.skip
def test_pickle_vocab(en_vocab):
file_ = io.BytesIO()
cloudpickle.dump(en_vocab, file_)