ChatGPT解决这个技术问题 Extra ChatGPT

Pycharm import RuntimeWarning after updating to 2016.2

After updating to new version 2016.2, I am getting

RuntimeWarning: Parent module 'tests' not found while handling absolute import
  import unittest
RuntimeWarning: Parent module 'tests' not found while handling absolute import
  import datetime as dt

'tests' is a package inside my main app package, and I receive these warnings when I try to execute unit tests inside this folder. This issue only came up after updating to 2016.2. Besides the warnings, the remaining code works fine.

Edit: This is a known issue - https://youtrack.jetbrains.com/issue/PY-20171. They are suggesting to replace utrunner.py in PyCharm installation folder.

Yep. I have the same behaviour after the switch to 2016.2
Alright I will open up a ticket to JetBrains.
For now, I just copied the old utrunner.py into 2016.2 - ~/pycharm-2016.1/helpers/pycharm/utrunner.py
I have the same behavior and it's really annoying!
@mircealungu - backups!

B
Bobby

This is a known issue introduced with the 2016.2 release. Progress can be followed on the JetBrains website here. According to this page it is due to be fixed in the 2017.1 release. You can follow the utrunner.py workaround that others have mentioned in the meantime - a copy of this file is attached to the linked ticket.


Replaced the old file (/Applications/PyCharm.app/Contents/helpers/pycharm/utrunner.py) with the file for download from youtrack.jetbrains.com (download link). Works perfectly for me.
This is still not fixed in pycharm-2016.2.3
This doesn't seem to be fixed in 2016.3, the same warning occurs.
Doesn't appear to be fixed in 2016.3.1
Not fixed in 2016.3.2
B
Brent Washburne

The latest recommendation (Dec. 19, 2016) is to put this line at the top of your unit test script:

from __future__ import absolute_import

That fixes the problem for me, but I think it's not an official recommendation, as the user mentioning this doesn't seem to be a JetBrains dev. Since this warning turns up even if only doing absolute imports, wouldn't adding that line be an unnecessary piece of code which would need to be removed after their next release?
It will probably need to be removed at some point in the future, yes. For more information, see stackoverflow.com/q/7075082/584846
Yeah, my point was that it's really unnecessary in this case, since this particular __future__ import is only there for fixing a bug in PyCharm. The source code needs no fix, at least in my case. So it seems that following the advice in the accepted answer would be better, since then the source code doesn't need to be touched at all.
I am in favor of from __future__ import absolute_import. If your Python 2.7 code can take it, I prefer to use all the future imports. It would simplify eventual move to Python 3.6.
This is the only solution that worked for me. Downloading the other utrunner.py and replacing the original did not appear to work. Perhaps Pycharm was caching it; I didn't try restarting my machine.
m
mircealungu

On OS X I've fixed this by replacing

Applications/PyCharm.app/Contents/helpers/pycharm/utrunner.py 

with an older version that can be found at http://code.metager.de/source/xref/jetbrains/intellij/community/python/helpers/pycharm/utrunner.py


p
petibonum

On Ubuntu 16.04 Bobby's solution also works:

Just replace your local utrunner.py file at

/usr/local/pycharm-edu-3.0/helpers/pycharm/utrunner.py

by the one from the Jetbrains website: http://code.metager.de/source/xref/jetbrains/intellij/community/python/helpers/pycharm/utrunner.py


I found mine installed at a different place, however it worked after replacing it with above version -- why did they not rollback? will doing this not make python unstable??
n
nidkil

On Windows 10 Bobby's solution also works:

Just replace your local utrunner.py file at

C:\Program Files (x86)\JetBrains\PyCharm 2016.3\helpers\pycharm

with the one from the Jetbrains website: http://code.metager.de/source/xref/jetbrains/intellij/community/python/helpers/pycharm/utrunner.py