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