Skip to content
Advertisement

__init__.py needed for imports to work in Pytest. But using Python 3.8

I have read that after Python 3.3, __init__.py is not required anymore, So I am not understanding why I need to add it (__init__.py) for my pytests to work.

Directory structure:

JavaScript

In /foo/bar.py I have the following code

JavaScript

In test_bar.py I have the following code

JavaScript

I run the tests from /root like this:

JavaScript

If I place a __init__.py file in /tests, the test passes. Without it, I get the following error:

JavaScript

Advertisement

Answer

I’m not python expert but I think if you really don’t want to have __init__.py in every directory all you can do is create a sys.path for your root directory. This will allow you to import module inside root directory without __init__.py.

Find the site-packages folder (if u’re using venv then it’s inside your_env/lib/python3.x/site-packages) and inside site-packages folder create a .pth file and inside that file you can write the path to root directory. Example, /Users/your_name/Desktop/root. Now you can import like what you want.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement