Closed chewi closed 1 year ago
The yield mechanism is no longer supported in pytest, so this has been replaced with @pytest.mark.parametrize. However, this means executing the tests directly as __main__ can no longer work.
yield
@pytest.mark.parametrize
__main__
Thank you and merry Christmas.
The
yield
mechanism is no longer supported in pytest, so this has been replaced with@pytest.mark.parametrize
. However, this means executing the tests directly as__main__
can no longer work.