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
Hi
Teamcity show all test pass while only one of them pass
Here is my test result text file, only respcode 000 means pass any other respcode failed:
Here is Teamcity "Performance Metrics Calculation"
Any idea?
Thanks
The text was updated successfully, but these errors were encountered:
After several workaround find solution, need to reorder column like this:
awk -F "\t" 'BEGIN {OFS = FS} {print $1,$2,$3,$4,$8,$5,$6,$7,$9,$10,$11,$12,$13,$14,$15,$16,$17}' temp-report.jtl > report.jtl
from this: timeStamp elapsed label responseCode responseMessage threadName dataType success failureMessage bytes sentBytes grpThreads allThreads URL Latency IdleTimeConnect
to this: timeStamp elapsed label responseCode success responseMessage threadName dataType failureMessage bytes sentBytes grpThreads allThreads URL Latency IdleTimeConnect
then enable "assertions fail the build if any assertion check fails" on teamcity "Performance Metrics Calculation"
Sorry, something went wrong.
No branches or pull requests
Hi
Teamcity show all test pass while only one of them pass
Here is my test result text file, only respcode 000 means pass any other respcode failed:
Here is Teamcity "Performance Metrics Calculation"
Any idea?
Thanks
The text was updated successfully, but these errors were encountered: