79362971

Date: 2025-01-16 20:24:14
Score: 0.5
Natty:
Report link
  1. Skip the current test if the module cannot be imported.
@pytest.importorskip("extra_name")
def test_something():
    # Test logic here
    pass
  1. Skip all tests in a module if some import is missing.
extra_name = pytest.importorskip("extra_name")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: defalt