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
Let's assume linux/osx for the moment (which is also the standard environment in pipelines).
Pre and post are two array of object that can be of type script or run:
script references an executable file in a path that can be relative to the config file location
run is basically a sh script that can be executed directly. Under the hood we may materialize it into a real sh file in the os tmp dir and run it using the config file directory as context
Pre are executed before all tests in the test group. Post after.
The text was updated successfully, but these errors were encountered:
Part of #55, depends on #57
See also #59
Let's add to the
yaks-config.yaml
file the possibility to run scripts pre and post executing the command:Let's assume linux/osx for the moment (which is also the standard environment in pipelines).
Pre and post are two array of object that can be of type
script
orrun
:script
references an executable file in a path that can be relative to the config file locationrun
is basically a sh script that can be executed directly. Under the hood we may materialize it into a real sh file in the os tmp dir and run it using the config file directory as contextPre are executed before all tests in the test group. Post after.
The text was updated successfully, but these errors were encountered: