-
-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
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
Export results from run screen #17
Comments
Comment from rohitcav
My reply to this:
|
At the moment I have functionality built to generate 3 csv files:
With these 3 files you should have everything needed for reporting test results
In addition to this you could also create an odbc connection from excel or another application to query the data for creating graphs and tables. I have place holder code commented out but ready for html & word format reports which i'll leave as is for now. |
CSV export functionality merged into branch v0.4.4 |
Hi rohitcav, Thanks for the feedback, many of the improvements were as a result of our conversations so your contribution has helped. Regarding your questions:
You can click the csv export at any time, usually you would wait until the test finished and then do the export, but there is nothing to stop you from doing it earlier either. I deliberately chose not to restrict this to after the test finished because this was one of the issues I have had with Loadrunner over the years, many times I have needed to get the results from a test before the end of the test, usually the trigger is something beyond your control.
I thought I had done that, but when I checked the code, it only happens if you used one of the auto-run modes, I guess I need to implement this for manual run as well. I logged Issue #51 for this. |
I ran couple of test and waited for more than 30 mins but still test is not getting stopped automatically. However, stats are showing on the table. |
Can you show me a screen shot of your plan screen? |
Ok, and when you run those tests individually from robot framework how long do they take to complete? Also at the 30 min mark, on the run screen was the number under Robots 0 or higher than 0? if the robots count is still above 0 the test hasn't finished ramping down and some test cases are still going. What should be happening based on this plan:
Because most test cases take longer than 1 minute, especially if you have added think times. But because rfswarm doesn't know how long your test case will run for the ramp down in the plan is estimated based on the ramp-up it could be much longer or much shorter, for example, if your test case takes ~1hr to run then the ramp down will be ~1 hour (minus the run time and some of the ramp up), likewise if your scripts only take 10 minutes and your ramp up was 1 hour, then the ramp down will be ~10 minutes. |
Method to export results from the run screen.
This is important as the sqlite3 db the results are stored in doesn't have a percentile function so the percentile is done as a python user-defined function.
The text was updated successfully, but these errors were encountered: