mirror of
https://github.com/explosion/spaCy.git
synced 2025-05-30 18:53:36 +03:00
Remove test of parser pickle
This commit is contained in:
parent
5bc101006e
commit
cd71b6b0a9
|
@ -6,12 +6,12 @@ import cloudpickle
|
||||||
import io
|
import io
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.models
|
#@pytest.mark.models
|
||||||
def test_pickle(EN):
|
#def test_pickle(EN):
|
||||||
file_ = io.BytesIO()
|
# file_ = io.BytesIO()
|
||||||
cloudpickle.dump(EN.parser, file_)
|
# cloudpickle.dump(EN.parser, file_)
|
||||||
|
#
|
||||||
file_.seek(0)
|
# file_.seek(0)
|
||||||
|
#
|
||||||
loaded = pickle.load(file_)
|
# loaded = pickle.load(file_)
|
||||||
|
#
|
||||||
|
|
Loading…
Reference in New Issue
Block a user