You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
426 B
16 lines
426 B
from sympy.external import import_module
|
|
from sympy.testing.pytest import ignore_warnings, raises
|
|
|
|
antlr4 = import_module("antlr4", warn_not_installed=False)
|
|
|
|
# disable tests if antlr4-python*-runtime is not present
|
|
if antlr4:
|
|
disabled = True
|
|
|
|
|
|
def test_no_import():
|
|
from sympy.parsing.latex import parse_latex
|
|
|
|
with ignore_warnings(UserWarning):
|
|
with raises(ImportError):
|
|
parse_latex('1 + 1')
|