I'm currently working in a python monorepo setup where we have multiple libraries and projects. They each have their own tests folders.
The problem I'm facing is that the test discovery of VSCode fails due to an ImportPathMismatchError error as pytest does not allow for multiple tests/conftest.py path to be used.
The cleanest solution I found so far is to rename the tests folders to NAME_tests to avoid the duplication but it does feel weird and hacky.
Fixing this would help further making VSCode a tool that works well in a monorepo setup.