-
Notifications
You must be signed in to change notification settings - Fork 93
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
mutilated pytest stack traces #381
Comments
I love what you've done with this library though, btw. As far as I'm concerned, this is the correct way to do file faking in python (aside from this broken stacktrace issue). Nice work 👍 |
There are other bugs lurking there for sure ;) |
I had a look, and can confirm that the problem is there since version 3.1 (when the pytest plugin has been added), and is somehow related to the setup of the Patcher. I didn't succeed so far in tracking down the reason for this, and can't promise anything soon - I'm not familiar with the intricacies of |
- see pytest-dev#381 - fixes the problem under Python 3, but not under Python 2
I seem to have found a solution for this under Python 3 (happened there too), but under Python 2 it still does not work. Not faking the |
Thank you for looking into this. Let me know if there's anything I can do to help |
Thanks - not sure how you could help, but I can explain the problem as I understand it. |
Thank you for the great triage and the Python 3 fix, @mrbean-bremen. I will give it a try, but like @mrbean-bremen, I am not so experienced with pytest. |
@jmcgeheeiv - I did some reading on |
Well done, @mrbean-bremen. @agosto-karlkroening, could we ask you to try this in your pytest environment and share this with us in the documentation? Just get the content in there, submit a pull request, assign it to me and I will be your tech writer. |
Let me make sure first that I didn't make a mistake and this really works as expected - I will have another look probably tomorrow evening. |
Sorry, I take it all back - I made a dumb mistake yesterday (wasn't my working temperature, obviously...). |
I'm not sure I understand the proposed solution. I'm not familiar with I did try pulling the latest pyfakefs and running the steps listed at the top of this issue:
The stacktrace issue seems to be fixed for Python 3.6, but still lurking in Python 2.7. |
@agosto-karlkroening - sorry, as I wrote, I made a dumb mistake while testing my changes and got overexcited. You can safely ignore the last posts. |
- does not work for Python 3.3 (which should not be used anymore anyway) - see pytest-dev#381
Ok, I found a relatively simple (if a bit hacky) solution that works in most tested versions (except Python 3.3). Will add a PR shortly. |
- does not work for Python 3.3 (which should not be used anymore anyway) - see #381
@kkroening - can you please check if the latest master works for you now? |
Looks like it's fixed! I had to install directly from the git repo rather than through pip/pypi, but it seems to work on both py2 and py3. Nice work! Thank you! |
Yes, we didn't make a new pypi release yet, though I think another minor release with the accumulated bug fixes would make sense. @jmcgeheeiv, what do you think? Closing the issue, I think we can ignore Python 3.3 now that it's eol. |
Well done, @mrbean-bremen. I suppose it is about time for a release. |
Ok, done. |
On Python 2.7, stack traces are garbled when using the
fs
pytest fixture:test.py
:bash
:$ virtualenv venv --no-site-packages $ . venv/bin/activate (venv) $ pip install pytest pyfakefs (venv) $ pytest test.py
Output:
Output without including
fs
fixture:Any ideas? Sorry if this has already been reported somewhere (I couldn't find an issue for it).
Python version: 2.7.14
pip version: 10.0.1
virtualenv version: 15.1.0
pip freeze output:
Thanks,
Karl
The text was updated successfully, but these errors were encountered: