In test.py, I am trying to import test_data:
import unittest2 import re from test_data import receipt1_example
test_data.py is in the same directory as test.py. I get the following error:
/Users/ahammond/.virtualenvs/ric2.6/bin/python2.6 /Applications/PyCharm.app/helpers/pycharm/utrunner.py / Users / ahammond / src / hackfest _spring_2012 / parse_me / test.py :: test true Testing began at 11:30 ... Traceback (last last call):
File "/Applications/PyCharm.app/helpers/pycharm/utrunner.py", line 121, at module = loadSource (a [0]) File "/Applications/PyCharm.app/helpers/pycharm/utrunner.py", line 44, in loadSource module = imp.load_source (moduleName, fileName) File "/Users/ahammond/src/hackfest_spring_2012/parse_me/test.py", line 4, in from test_data import receipt1_example ImportError: There is no module named test_data p >
Process terminated with exit code 1
As you can see, I am running this under pycharm using virtualenv. Here is a screenshot of the configuration:

source share