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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
#!/usr/bin/env python
"""
Run tests for specific packages that use optional dependencies.
The optional dependencies need to be installed before running this.
"""
import pytest
# Add the local sympy to sys.path (needed for CI)
from get_sympy import path_hack
path_hack()
class TestsFailedError(Exception):
pass
test_list = [
# numpy
'*numpy*',
'sympy/core/',
'sympy/matrices/',
'sympy/physics/quantum/',
'sympy/utilities/tests/test_lambdify.py',
'sympy/physics/control/',
# scipy
'*scipy*',
# matplotlib
'sympy/plotting/',
# llvmlite
'*llvm*',
# aesara
'*aesara*',
# jax
'*jax*',
# gmpy
'sympy/ntheory',
'sympy/polys',
# gmpy, numpy, scipy, autowrap, matplotlib
'sympy/external',
# autowrap
'*autowrap*',
# ipython
'*ipython*',
# antlr, lfortran, clang
'sympy/parsing/',
# codegen
'sympy/codegen/',
'sympy/utilities/tests/test_codegen',
'sympy/utilities/_compilation/tests/test_compilation',
'sympy/external/tests/test_codegen.py',
# cloudpickle
'pickling',
# pycosat
'sympy/logic',
'sympy/assumptions',
# stats
'sympy/stats',
# lxml
"sympy/utilities/tests/test_mathml.py",
]
blacklist = [
'sympy/physics/quantum/tests/test_circuitplot.py',
]
doctest_list = [
# numpy
'sympy/matrices/',
'sympy/utilities/lambdify.py',
# scipy
'*scipy*',
# matplotlib
'sympy/plotting/',
# llvmlite
'*llvm*',
# aesara
'*aesara*',
# gmpy
'sympy/ntheory',
'sympy/polys',
# autowrap
'*autowrap*',
# ipython
'*ipython*',
# antlr, lfortran, clang
'sympy/parsing/',
# codegen
'sympy/codegen/',
# pycosat
'sympy/logic',
'sympy/assumptions',
#stats
'sympy/stats',
# lxml
"sympy/utilities/mathml/",
]
# This is just needed for the numpy nightly job which does not have matplotlib
# Otherwise these could be added to doctest_list above
try:
import matplotlib # noqa: F401
doctest_list.extend([
'doc/src/tutorials/biomechanics/biomechanical-model-example.rst',
'doc/src/tutorials/biomechanics/biomechanics.rst',
])
except ImportError:
pass
print('Testing optional dependencies')
from sympy import test, doctest
tests_passed = test(*test_list, blacklist=blacklist, force_colors=True)
if tests_passed is True:
tests_passed = pytest.ExitCode.OK
doctests_passed = doctest(*doctest_list, force_colors=True)
if (tests_passed != pytest.ExitCode.OK) and not doctests_passed:
raise TestsFailedError('Tests and doctests failed')
elif tests_passed != pytest.ExitCode.OK:
raise TestsFailedError('Doctests passed but tests failed')
elif not doctests_passed:
raise TestsFailedError('Tests passed but doctests failed')
|