Complete the code to name the folder where pytest looks for test files by default.
The default folder for pytest test files is named '[1]'.
Pytest by default looks for test files inside a folder named tests.
Complete the code to name the prefix pytest expects for test files.
Pytest looks for test files starting with '[1]'.
Pytest expects test files to start with test_ to identify them as test scripts.
Fix the error in the test file naming to make pytest recognize it.
Rename the file from 'exampleTests.py' to '[1].py' to follow pytest conventions.
Pytest requires test files to start with test_. So test_example.py is correct.
Fill both blanks to complete the pytest project structure with a test file and a test function.
tests/[1].py contains a function named [2] that pytest will run.
Test files should start with test_, so test_sample.py is correct. Test functions should also start with test_, so test_example is a valid function name.
Fill all three blanks to complete the pytest project structure with a test folder, test file, and test function.
The folder '[1]' contains the file '[2].py' which has the function '[3]' that pytest runs.
The standard pytest folder is tests. The test file should start with test_, so test_utils.py is correct. The test function also starts with test_, so test_process_data is valid.