forked from sympy/sympy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pytest.ini
25 lines (20 loc) · 807 Bytes
/
pytest.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[pytest]
# Only run tests under the sympy/ directory. Otherwise pytest will attempt to
# collect tests from e.g. the bin/ directory as well.
testpaths = sympy doc/src
# np.matrix is deprecated but still used in sympy.physics.quantum:
# https://github.com/sympy/sympy/issues/15563
# This prevents ~800 warnings showing up running the tests under pytest.
filterwarnings =
ignore:.*the matrix subclass is not the recommended way.*:PendingDeprecationWarning
ignore:IPython.utils.signatures backport for Python 2 is deprecated.*:DeprecationWarning
# Normalise output of doctests.
doctest_optionflags =
NORMALIZE_WHITESPACE
IGNORE_EXCEPTION_DETAIL
ELLIPSIS
FLOAT_CMP
norecursedirs =
sympy/parsing/autolev/test-examples
sympy/integrals/rubi/rubi_tests
doctestplus = enabled