Let\'s say I have a bunch of tests:
def test_func_one(): ... def test_func_two(): ... def test_func_three(): ...
Is there a dec
If you want to skip the test but not hard code a marker, better use keyword expression to escape it.
pytest test/test_script.py -k 'not test_func_one'