I have 2 features file (createX.feature and createY.feature) at feature directory but I want to select only 1
My configuration is
- Script: createY.feature
- Script parameters: --tags=@int --tags=@e2e
- Interpreter options: -m behave
- Working directory: $features_directory
The "Run" window shows this execution command
/Library/Frameworks/Python.framework/Versions/3.5/bin/python3.5 -m behave createY.feature --tags=@int --tags=@e2e
but pycharm chooses the other feature file :(
But if I run the command at a terminal window, the command works!!
Edit: I have changed the feature file I want to execute for a better understanding: I try to execute the last one following alphabetical order
Edit 2: Solved It seems that behave does not like to have "scratch" files for control tasks at steps directory ... Once I deleted them, that handsome configuration works!!