File size: 232 Bytes
d916065
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
def setup_module():
    import pytest

    from nltk.parse.malt import MaltParser

    try:
        depparser = MaltParser()
    except (AssertionError, LookupError) as e:
        pytest.skip("MaltParser is not available")