Complete the code to register a custom marker named 'slow' in pytest.ini.
[pytest]
markers =
[1]: marks tests as slowThe marker name 'slow' must be registered exactly as used in tests.
Complete the code to register two markers 'slow' and 'database' in pytest.ini.
[pytest]
markers =
slow: marks tests as slow
[1]: marks tests that use the databaseThe marker 'database' is used to mark tests that interact with the database.
Fix the error in the pytest.ini snippet by completing the missing marker name.
[pytest]
markers =
slow: marks tests as slow
[1] marks tests that require network accessEach marker must be followed by a colon ':' to describe it properly.
Fill both blanks to correctly register markers 'slow' and 'api' with descriptions.
[pytest]
markers =
[1]: marks tests as slow
[2]: marks tests that test the APIMarkers must be registered with their exact names and a colon before the description.
Fill all three blanks to register markers 'slow', 'database', and 'network' with descriptions.
[pytest]
markers =
[1]: marks tests as slow
[2]: marks tests that use the database
[3]: marks tests that require network accessEach marker must be registered with its exact name and a colon before the description.