python - 执行python的测试函数时出错

标签 python numpy pytest

import numpy
import numpy.linalg

def MyBackSubstitution(A, b):
    """
    Solve the upper triangular linear system A x = b.

    Parameters
    ----------

    A : array of float
        real square matrix
    b : vector of float
        real vector

    Returns
    -------

    x : vector of float
        solution

    Notes
    -----

    Simplified method with limited error checking.
    """

    assert(numpy.all(numpy.isreal(b))), "b must be real"
    assert(numpy.all(numpy.isfinite(b))), "b must be finite"
    assert(numpy.ndim(b) == 1), "b must be a vector"
    n = len(b)

    assert(numpy.all(numpy.isreal(A))), "A must be real"
    assert(numpy.all(numpy.isfinite(A))), "A must be finite"
    assert(numpy.ndim(A) == 2), "A must be a matrix"
    assert(A.shape == (n, n)), "A must be a square matrix compatible with b"

    x = numpy.zeros_like(b)

    for i in range(n-1,-1,-1):
        x[i] = b[i] / A[i, i]
        for k in range(i+1,n):
            x[i] -=  A[i, k] * x[k] / A[i, i]

    return x

def MyGaussianElimination(A, b):
    """
    Solve the linear system A x = b using Gaussian Elimination without pivoting.

    Parameters
    ----------

    A : array of float
        real square matrix
    b : vector of float
        real vector

    Returns
    -------

    x : vector of float
        solution

    Notes
    -----

    Simplified method with limited error checking.
    """

    # Error checking here
    assert(numpy.all(numpy.isreal(b))), "b must be real"
    assert(numpy.all(numpy.isfinite(b))), "b must be finite"
    assert(numpy.ndim(b) == 1), "b must be a vector"
    n = len(b)

    assert(numpy.all(numpy.isreal(A))), "A must be real"
    assert(numpy.all(numpy.isfinite(A))), "A must be finite"
    assert(numpy.ndim(A) == 2), "A must be a matrix"
    assert(A.shape == (n, n)), "A must be a square matrix compatible with b"

    # Construct augmented matrix. Slightly tedious.
    aug = numpy.hstack((A, numpy.reshape(b, [len(b), 1])))

    # Put the augmented matrix in triangular form.
    #assert(False), "Code needed here"

    for i in range(n):
        assert(numpy.abs(aug[i,i]) > 1e-20), "Diagonal element zero!"
        for k in range(i+1,n):
            pivot = aug[k,i] / aug[i,i]
            aug[k,:] -= pivot * aug[i,:]

    # Solve using back substitution.
    x = MyBackSubstitution(aug[:, :-1], aug[:, -1])

    return x


def MyGaussianEliminationWithPivoting(A, b):
    """
    Solve the linear system A x = b using Gaussian Elimination with pivoting.

    Parameters
    ----------

    A : array of float
        real square matrix
    b : vector of float
        real vector

    Returns
    -------

    x : vector of float
        solution

    Notes
    -----

    Simplified method with limited error checking.
    """

    # Error checking here
    assert(numpy.all(numpy.isreal(b))), "b must be real"
    assert(numpy.all(numpy.isfinite(b))), "b must be finite"
    assert(numpy.ndim(b) == 1), "b must be a vector"
    n = len(b)

    assert(numpy.all(numpy.isreal(A))), "A must be real"
    assert(numpy.all(numpy.isfinite(A))), "A must be finite"
    assert(numpy.ndim(A) == 2), "A must be a matrix"
    assert(A.shape == (n, n)), "A must be a square matrix compatible with b"

    # Construct augmented matrix. Slightly tedious.
    aug = numpy.hstack((A, numpy.reshape(b, [len(b), 1])))

    # Put the augmented matrix in triangular form.
    #assert(False), "Code needed here"

    for i in range(n):
        # Find the location of the pivot
        ind = numpy.argmax(numpy.abs(aug[i:, i]))
        if ind != i:
            # One liner to swap the rows; think carefully!
            aug[[i,ind+i],:] = aug[[ind+i, i],:]
        for k in range(i+1,n):
            pivot = aug[k,i] / aug[i,i]
            aug[k,:] -= pivot * aug[i,:]

    # Solve using back substitution.
    x = MyBackSubstitution(aug[:, :-1], aug[:, -1])

    return x

# What follows are testing functions to validate the code   
import pytest

def test_diagonal():
    A = numpy.eye(2)
    b = numpy.array([1.0, 2.0])
    x_my = MyGaussianElimination(A, b)
    check = numpy.allclose(x_my, b)
    assert check

def test_triangular():
    A = numpy.array([[1.0, 2.0], [0.0, 1.0]])
    b = numpy.array([4.0, 1.0])
    x_my = MyGaussianElimination(A, b)
    x_exact = numpy.linalg.solve(A, b)
    check = numpy.allclose(x_my, x_exact)
    assert check

def test_full():
    A = numpy.array([[1.0, 2.0], [3.0, 4.0]])
    b = numpy.array([5.0, 6.0])
    x_my = MyGaussianElimination(A, b)
    x_exact = numpy.linalg.solve(A, b)
    check = numpy.allclose(x_my, x_exact)
    assert check

def test_threebythree():
    A = numpy.array([[3.0, 0.0, 1.0], [6.0, 2.0, 4.0], [9.0, 2.0, 6.0]])
    b = numpy.array([4.0, 10.0, 15.0])
    x_my = MyGaussianElimination(A, b)
    x_exact = numpy.linalg.solve(A, b)
    check = numpy.allclose(x_my, x_exact)
    assert check

def test_incompatible():
    A = numpy.array([[3.0, 0.0, 1.0], [6.0, 2.0, 4.0], [9.0, 2.0, 6.0]])
    b = numpy.array([4.0, 10.0])
    with pytest.raises(AssertionError):
        MyGaussianElimination(A, b)

def test_input():
    A = numpy.array([[3.0, 0.0, 1.0], [6.0, 2.0, 4.0], [9.0, 2.0, 6.0]])
    b = "dog"
    with pytest.raises(AssertionError):
        MyGaussianElimination(A, b)

def test_singular():
    A = numpy.array([[3.0, 0.0, 1.0], [6.0, 2.0, 4.0], [9.0, 2.0, 5.0]])
    b = numpy.array([4.0, 10.0])
    with pytest.raises(AssertionError):
        MyGaussianElimination(A, b)

def test_finite():
    A = numpy.array([[1.0, 1.0, 1.0], [0.0, 0.0, 2.0], [0.0, 1.0, 1.0]])
    b = numpy.array([1.0, 1.0, 2.0])
    with pytest.raises(AssertionError):
        MyGaussianElimination(A, b)

def test_needs_pivoting():
    A = numpy.array([[1.0e-20, 1.0], [1.0, 1.0]])
    b = numpy.array([1.0, 2.0])
    with pytest.raises(AssertionError):
        MyGaussianElimination(A, b)

# Test with pivoting

def test_diagonal_pivoting():
    A = numpy.eye(2)
    b = numpy.array([1.0, 2.0])
    x_my = MyGaussianEliminationWithPivoting(A, b)
    check = numpy.allclose(x_my, b)
    assert check

def test_triangular_pivoting():
    A = numpy.array([[1.0, 2.0], [0.0, 1.0]])
    b = numpy.array([4.0, 1.0])
    x_my = MyGaussianEliminationWithPivoting(A, b)
    x_exact = numpy.linalg.solve(A, b)
    check = numpy.allclose(x_my, x_exact)
    assert check

def test_full_pivoting():
    A = numpy.array([[1.0, 2.0], [3.0, 4.0]])
    b = numpy.array([5.0, 6.0])
    x_my = MyGaussianEliminationWithPivoting(A, b)
    x_exact = numpy.linalg.solve(A, b)
    check = numpy.allclose(x_my, x_exact)
    assert check

def test_threebythree_pivoting():
    A = numpy.array([[3.0, 0.0, 1.0], [6.0, 2.0, 4.0], [9.0, 2.0, 6.0]])
    b = numpy.array([4.0, 10.0, 15.0])
    x_my = MyGaussianEliminationWithPivoting(A, b)
    x_exact = numpy.linalg.solve(A, b)
    check = numpy.allclose(x_my, x_exact)
    assert check

def test_incompatible_pivoting():
    A = numpy.array([[3.0, 0.0, 1.0], [6.0, 2.0, 4.0], [9.0, 2.0, 6.0]])
    b = numpy.array([4.0, 10.0])
    with pytest.raises(AssertionError):
        MyGaussianEliminationWithPivoting(A, b)

def test_input_pivoting():
    A = numpy.array([[3.0, 0.0, 1.0], [6.0, 2.0, 4.0], [9.0, 2.0, 6.0]])
    b = "dog"
    with pytest.raises(AssertionError):
        MyGaussianEliminationWithPivoting(A, b)

def test_singular_pivoting():
    A = numpy.array([[3.0, 0.0, 1.0], [6.0, 2.0, 4.0], [9.0, 2.0, 5.0]])
    b = numpy.array([4.0, 10.0])
    with pytest.raises(AssertionError):
        MyGaussianEliminationWithPivoting(A, b)

def test_finite_pivoting():
    A = numpy.array([[1.0, 1.0, 1.0], [0.0, 0.0, 2.0], [0.0, 1.0, 1.0]])
    b = numpy.array([1.0, 1.0, 2.0])
    with pytest.raises(AssertionError):
        MyGaussianEliminationWithPivoting(A, b)

def test_needs_pivoting_pivoting():
    A = numpy.array([[1.0e-20, 1.0], [1.0, 1.0]])
    b = numpy.array([1.0, 2.0])
    x_my = MyGaussianEliminationWithPivoting(A, b)
    x_exact = numpy.linalg.solve(A, b)
    check = numpy.allclose(x_my, x_exact)
    assert check

# Run all the tests
pytest.main("-x GaussElimination.py")

这段代码已在类里面显示,但当我尝试pytest.main("-x GaussElimination.py")时,我无法有效地测试它。

我收到以下错误消息:

TypeError: args parameter expected to be a list or tuple of strings, got: '-x GaussElimination.py' (type: )

这是我第一次使用pytest,我不确定所使用的参数是否正确,但这就是我们在类里面展示的内容,然后它就起作用了。我也尝试在网上查找,但找不到简单的示例。

谢谢。

最佳答案

尝试 pytest.main(["-x", "GaussElimination.py"])

如果您检查以下引用链接,您就会明白它为何有效。

引用链接:https://docs.pytest.org/en/latest/usage.html#calling-pytest-from-python-code

引用链接:“您可以传入选项和参数:pytest.main(["-x", "mytestdir"]) "

关于python - 执行python的测试函数时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59965160/

相关文章:

python - 语法错误 : missing ; before statement

python - 如何有效地从大型 numpy 数组中删除一系列行?

python - 如何在 OSX 上安装 numpy 和 scipy?

python - 没有参数的 Pytest 有错误的工作目录

testing - pytest : how to create and read a file inside a test

python - 对象移出屏幕

python - 运行 pwssh 时出现无效语法 ^ 错误

python - 我使用 virtualenv 是错误的还是这是它的限制?

python - 基于字符串创建新列

python - 你应该在 Python 中测试原始函数吗?