behave-vsc icon indicating copy to clipboard operation
behave-vsc copied to clipboard

recursive parsing from import file

Open Kellyyys opened this issue 7 months ago • 1 comments

Is your feature request related to a problem? Please describe. When there is a step file that has only one import line, the step parser just ignore the line and move to other files. However, if we have a file that is imported from other file in other repo, the regex in that file will not be thrown into the parser so that the autocomplete and eror step check does not evolve these steps.

Describe the solution you'd like If there is a step file in current repo has only one line import import other_repo.feature.steps.other_step.py. Then any step regex from other_repo.feature.steps.other_step.py should be parsed.

Additional context Currently working on modifying code to accomplish this.

Kellyyys avatar Jul 02 '24 18:07 Kellyyys