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
This is with a only a single feature file, containing only a single Scenario Outline. I have a table of 8 integer inputs and 4 integer outputs. I've tried replacing every single function in steps.py and terrain.py with pass, so that no code of my own is even being called, and it's just as slow (and in any case, my code is doing very fast, simple things).
Running a profile, it looks like it's spending 99.9% of its time in deepcopy copy.py:145 (Though I don't know if the profile is lying maybe the actual tests is running somewhere else)
The text was updated successfully, but these errors were encountered:
DanielVF
changed the title
Slow - exponential time increase with examples
Exponential test time increase with more examples
Aug 27, 2016
I'm seeing exponential time increases when adding more examples to my scenario outline.
1x Example - 1.4 seconds
10x Examples - 22 seconds
20x Examples - 136 seconds
100x Examples - Well...
This is with a only a single feature file, containing only a single Scenario Outline. I have a table of 8 integer inputs and 4 integer outputs. I've tried replacing every single function in steps.py and terrain.py with
pass
, so that no code of my own is even being called, and it's just as slow (and in any case, my code is doing very fast, simple things).Running a profile, it looks like it's spending 99.9% of its time in
deepcopy copy.py:145
(Though I don't know if the profile is lying maybe the actual tests is running somewhere else)The text was updated successfully, but these errors were encountered: