-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Unexpected @depends behaviour #9
Comments
I wasn't complaining about the order of the executed tests, but about the fact described in #11. Thank you very much! |
Closed
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When I have a tree of depending tests:
They are executed linearily and still the same object is passed as argument, so for example at testIpsum, I got the object with changes from testLorem). Which I consider as unexpected and not wanted behaviour.
I think that the order of executed tests should be tree-like, everytime with a new object:
running testBasic: testBasic
running testBar: testBasic - testBar
running testLorem: testBasic - testLorem
running testFoo: testBasic - testLorem - testFoo
running testIpsum - testBasic - testIpsum
The text was updated successfully, but these errors were encountered: