import pytest try: import mylib except ImportError: mylib = None @pytest.mark.skip("Do not run this") def test_fail(): assert False ...
確定! 回上一頁