In PyCharm there is one very convenient option - automatic test creation. For any method of any class, you can select Go to > Test > Create New Test... from the context menu and the corresponding test is created in the corresponding class in the appropriate module. But one problem spoils everything. By default, he chooses the same directory in which the module under test is located as the path to create a test module. Since tests always lie separately from the rest of the code, you have to open the "Target directory" dialog and set the path to the test directory every time!
Question: How to explain to PyCharm that all my tests should be created in a specific directory ./test (from the root of the project), so that the auto-creation of new tests happens in one (two, three way) keystrokes.
Instead of this:
Automatically insert the path to ./test :

