I am trying to learn how to create pkg and testing. I researched and found out that for testing you create a seperate folder
power_decos/
├── pytest_cache/
├── venve/
├── decorators/
│ ├── init.py
│ ├── decorator1.py
│ ├── decorator2.py
├── tests/
│ ├── init.py
│ ├── decorator1_test.py
i run in decorator1_test from decorators import decorator1
when i run it it gives me No module named decorators found
i aksed chatgpt but he couldnt help me. i also looked in github for examples but non were found (at least which i could understand)
i am excpecting it to import the decorators pkg