Simon Zhu

Results 1 issues of Simon Zhu

code: `import pytest @pytest.fixture(scope="function", autouse=True) def set_up(): print("Test set up start") raise Exception("set up failed") yield print("Test set up finish") @pytest.fixture(scope="class", autouse=True) def tear_down(): print("Test tear down start") yield raise...