PyTest - Basics and Setup
Which of the following function names will pytest recognize as a test function inside a test file?
test_ to be auto-discovered.test_example_function starts with test_ - valid.example_test_function does not start with test_ - invalid.check_example_function does not start with test_ - invalid.exampleFunctionTest does not start with test_ - invalid.test_ [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions