Skip to content

Commit

Permalink
Remove __init__.py from test directories
Browse files Browse the repository at this point in the history
  • Loading branch information
flying-sheep committed Aug 12, 2022
1 parent 20f1c95 commit e511dc0
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions doc/en/fixture.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -1267,8 +1263,6 @@ For example, given the following file structure:
::

tests/
__init__.py

conftest.py
# content of tests/conftest.py
import pytest
Expand All @@ -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
Expand Down Expand Up @@ -2284,8 +2276,6 @@ Given the tests file structure is:
::

tests/
__init__.py

conftest.py
# content of tests/conftest.py
import pytest
Expand All @@ -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
Expand All @@ -2327,8 +2315,6 @@ Given the tests file structure is:
::

tests/
__init__.py

conftest.py
# content of tests/conftest.py
import pytest
Expand Down Expand Up @@ -2370,8 +2356,6 @@ Given the tests file structure is:
::

tests/
__init__.py

conftest.py
# content of tests/conftest.py
import pytest
Expand Down Expand Up @@ -2408,8 +2392,6 @@ Given the tests file structure is:
::

tests/
__init__.py

conftest.py
# content of tests/conftest.py
import pytest
Expand Down

0 comments on commit e511dc0

Please sign in to comment.