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
I thought I could use the ${HYPERFINE_ITERATION} env variable that is exposed (mentioned as a solution in #778) ; however this is only accessible in the main command of the iteration, not the prepare or conclude steps for each iteration.
So for example if I want to prepare , test and cleanup a series of files, I would do something like this (with echo for illustrative purposes) :
I can work around it by changing the directory structure and using a recursive cleanup command (instead of conclude) but this might not be practical in some situations. For example if there is limited storage space on the test system, each data file would need to be cleaned up before the next one can be written.
I thought I could use the
${HYPERFINE_ITERATION}
env variable that is exposed (mentioned as a solution in #778) ; however this is only accessible in the main command of the iteration, not the prepare or conclude steps for each iteration.So for example if I want to prepare , test and cleanup a series of files, I would do something like this (with
echo
for illustrative purposes) :However this does not work because the env var is not exposed in all the steps:
so it's not possible to prepare and clean up each file.
The text was updated successfully, but these errors were encountered: