Best Python code snippet using refurb_python
test_arg_parsing.py
Source:test_arg_parsing.py  
...235    assert merged == Settings(236        disable_all=True,237        enable=set((ErrorCode(456),)),238    )239def test_parse_python_version_flag() -> None:240    settings = parse_args(["--python-version", "3.9"])241    assert settings.python_version == (3, 9)242def test_parse_invalid_python_version_flag_will_fail() -> None:243    versions = ["3.10.8", "x.y", "-3.-8"]244    for version in versions:245        with pytest.raises(ValueError):246            parse_args(["--python-version", version])247def test_parse_python_version_flag_in_config_file() -> None:248    contents = """\249[tool.refurb]250python_version = "3.5"251"""252    config_file = parse_config_file(contents)253    assert config_file.python_version == (3, 5)...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
