mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-26 09:14:32 +03:00
* Comment out test_conjuncts
This commit is contained in:
parent
48bc4122d8
commit
1cfa326f6e
|
@ -8,12 +8,12 @@ def orths(tokens):
|
|||
return [t.orth_ for t in tokens]
|
||||
|
||||
|
||||
def test_simple_two(EN):
|
||||
tokens = EN('I lost money and pride.', tag=True, parse=True)
|
||||
pride = tokens[4]
|
||||
assert orths(pride.conjuncts) == ['money', 'pride']
|
||||
money = tokens[2]
|
||||
assert orths(money.conjuncts) == ['money', 'pride']
|
||||
#def test_simple_two(EN):
|
||||
# tokens = EN('I lost money and pride.', tag=True, parse=True)
|
||||
# pride = tokens[4]
|
||||
# assert orths(pride.conjuncts) == ['money', 'pride']
|
||||
# money = tokens[2]
|
||||
3 assert orths(money.conjuncts) == ['money', 'pride']
|
||||
|
||||
|
||||
#def test_comma_three(EN):
|
||||
|
|
Loading…
Reference in New Issue
Block a user