-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
funcarg/fixture uses a different reference to object #203
Comments
Original comment by holger krekel (BitBucket: hpk42, GitHub: hpk42): you can install the new version with "pip install -i http://pypi.testrun.org -U pytest" which should give you at least "dev2". Would be good if you confirm it works for you. Willthen do another release on monday or so. Let the bug reports flow :) |
Original comment by eduardo schettino (BitBucket: schettino72, GitHub: schettino72): works for me. thanks for the quickly reply. sorry for testing after the release... I planned to try py.test2.3 on the weekend but you were faster than me :D I converted some tests to 2.3 style and i like the result. cheers |
There is no need to keep the pickled grammar files in git. PR pytest-dev#203 will move them into a user-specific cache directory any way. See: psf/black#192 Signed-off-by: Christian Heimes <[email protected]>
Originally reported by: eduardo schettino (BitBucket: schettino72, GitHub: schettino72)
Something like this (using old funcargs) used to work on 2.2
but now fails on 2.3.
The object instance used to run the test is different from
the instance used to calculate the value of the fixture.
So modification to "self" in the fixture are lost.
The text was updated successfully, but these errors were encountered: