You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a context decorator called focus. This would tell pyVows that it only needs to run the specified context. This is very useful when trying to fix a specific context.
Of course all the parent contexts need to be run as well.
Note that this is not the same as running a single vow from the command line. I'd even say that if this is implemented we don't need to run a single vow from the command line.
Does having the decorator make implementing the commandline argument easier? If I had to pick one, I'd prefer to have the commandline argument, however best would be to have both.
Could the commandine argument apply the focus decorator at run time?
Create a context decorator called focus. This would tell pyVows that it only needs to run the specified context. This is very useful when trying to fix a specific context.
Of course all the parent contexts need to be run as well.
Would be something like:
In the above example, both
SomeContext
andOtherChildContext
should be run, but notSomeChildContext
.The text was updated successfully, but these errors were encountered: