We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you use an absolute path to a file which is long, time execution overrides path name.
$ mkdir -p /tmp/path/to/a/long/filename/ $ cat >> /tmp/path/to/a/long/filename/test_suite_name.yml << EOF > name: Title of TestSuite > testcases: > - name: Check if exit code != 1 and echo command response in less than 1s > steps: > - script: echo 'foo' > assertions: > - result.code ShouldEqual 0 > - result.timeseconds ShouldBeLessThan 1 > EOF
$ venom run /tmp/path/to/a/long/filename/test_suite_name.yml SUCCESS /tmp/path/to/a/long/filename/test_suite_name.ym13.081607ms [..]
We can see that last character of filename (l) is not displayed
l
Display full path name.
The text was updated successfully, but these errors were encountered:
Hello @yesnault,
Any chance this one can be fixed before release of 0.28 ?
Sorry, something went wrong.
fix: do not truncate filename in results
c51e988
close #254 Signed-off-by: Yvonnick Esnault <yvonnick.esnault@corp.ovh.com>
fix: do not truncate filename in results (#273)
b349e3a
Hello @yesnault, Any chance this one can be fixed before release of 0.28 ?
yes, there is a chance :)
Thanks !
yesnault
Successfully merging a pull request may close this issue.
If you use an absolute path to a file which is long, time execution overrides path name.
Steps to reproduce
Actual results
We can see that last character of filename (
l
) is not displayedExpected results
Display full path name.
The text was updated successfully, but these errors were encountered: