1
1
mirror of https://github.com/explosion/spaCy.git synced 2025-01-15 12:06:25 +03:00
spaCy/spacy/tests/regression/test_issue1919.py

11 lines
274 B
Python
Raw Normal View History

'''Test that nlp.begin_training() doesn't require missing cfg properties.'''
from __future__ import unicode_literals
import pytest
from ... import load as load_spacy
@pytest.mark.models('en')
def test_issue1919():
nlp = load_spacy('en')
opt = nlp.begin_training()