diff --git a/test/test_algorithm.py b/test/test_algorithm.py index 0360d6a348b1e1e1ab46f6bb4df0785252b2bea4..38a91cef7ee217d05f40ab699806296cd4056662 100644 --- a/test/test_algorithm.py +++ b/test/test_algorithm.py @@ -24,6 +24,9 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ +# avoid spurious: pytest.mark.parametrize is not callable +# pylint: disable=not-callable + from six.moves import range, zip import numpy as np import numpy.linalg as la diff --git a/test/test_array.py b/test/test_array.py index 744f1240482d1e467f0e1fd7e9954defe24a15d1..a9b0b6124d71e62833552fce1d9d0ea4b0fc5b4f 100644 --- a/test/test_array.py +++ b/test/test_array.py @@ -23,6 +23,9 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ +# avoid spurious: pytest.mark.parametrize is not callable +# pylint: disable=not-callable + import numpy as np import numpy.linalg as la import sys diff --git a/test/test_clmath.py b/test/test_clmath.py index 9c844016077ffaf31252b7852fd43138eed62fbd..74b40208ebdb81f2d97c8990e00944de0510d2ce 100644 --- a/test/test_clmath.py +++ b/test/test_clmath.py @@ -22,6 +22,10 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ +# avoid spurious: pytest.mark.parametrize is not callable +# avoid spurious: Module 'scipy.special' has no 'jn' member; maybe 'jv' +# pylint: disable=not-callable,no-member + from six.moves import range import math diff --git a/test/test_clrandom.py b/test/test_clrandom.py index b6b2094e2b0de7630f66c0db876452d81226bbc0..53de4821c6ee401341dd7e72328ec07d93d10b61 100644 --- a/test/test_clrandom.py +++ b/test/test_clrandom.py @@ -22,6 +22,9 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ +# avoid spurious: pytest.mark.parametrize is not callable +# pylint: disable=not-callable + import numpy as np import pytest diff --git a/test/test_wrapper.py b/test/test_wrapper.py index 63c5e8a0633faf16c1fba77f4a47c52c6768e43b..afc239d9796e6cebbd8b3352013ea8bc2f80cb3b 100644 --- a/test/test_wrapper.py +++ b/test/test_wrapper.py @@ -22,6 +22,9 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ +# avoid spurious: pytest.mark.parametrize is not callable +# pylint: disable=not-callable + from six.moves import range import numpy as np