diff --git a/doc/en/fixture.rst b/doc/en/fixture.rst index 2fce4be8214..e0d4044d8e0 100644 --- a/doc/en/fixture.rst +++ b/doc/en/fixture.rst @@ -1178,8 +1178,6 @@ For example, given a test file structure like this: :: tests/ - __init__.py - conftest.py # content of tests/conftest.py import pytest @@ -1204,8 +1202,6 @@ For example, given a test file structure like this: assert order == ["innermost top", "top"] subpackage/ - __init__.py - conftest.py # content of tests/subpackage/conftest.py import pytest @@ -1267,8 +1263,6 @@ For example, given the following file structure: :: tests/ - __init__.py - conftest.py # content of tests/conftest.py import pytest @@ -1278,8 +1272,6 @@ For example, given the following file structure: return [] subpackage/ - __init__.py - conftest.py # content of tests/subpackage/conftest.py import pytest @@ -2284,8 +2276,6 @@ Given the tests file structure is: :: tests/ - __init__.py - conftest.py # content of tests/conftest.py import pytest @@ -2300,8 +2290,6 @@ Given the tests file structure is: assert username == 'username' subfolder/ - __init__.py - conftest.py # content of tests/subfolder/conftest.py import pytest @@ -2327,8 +2315,6 @@ Given the tests file structure is: :: tests/ - __init__.py - conftest.py # content of tests/conftest.py import pytest @@ -2370,8 +2356,6 @@ Given the tests file structure is: :: tests/ - __init__.py - conftest.py # content of tests/conftest.py import pytest @@ -2408,8 +2392,6 @@ Given the tests file structure is: :: tests/ - __init__.py - conftest.py # content of tests/conftest.py import pytest