- What about the
__init__.py
in the apple directory... correct? Empty or what should be inside?
Yes, correct. Most frequently empty. If you put foo = 42
in it you can later do from apple import foo
while you'll need to do from apple.apple import foo
if you put it in apple.py
. While it might seem convenient you should use it sparingly.
- Is it best practice to call py.test from the root directory? Or py.test tests?
py.test should be able to find your tests regardless, but see below..
- So many projects have a
__init__.py
in their test directory, but that's explicitly said to be wrong in the py.test documentation. So why god why
So you can import a file in tests that provide common test functionality. In py.test that might be better achieved by creating fixtures in a file called tests/conftest.py
.
- What comes at the top of the test_everything.py file: an import apple or from apple import *? or something else entirely
from apple import apple
- Do you call the functions then by eat() or apple.eat()?
apple.eat()
- Some even recommend manipulating os.path.dirname in python
That seems very fragile. I would suggest either
(a) set the environment variable PYTHONPATH to point to the folder where README.md
is, or better
(b) create a setup.py file (at the same level as your README.md
file), here's a minimal one:
from setuptools import setup
setup(name='apple', packages=['apple'])
Run the file like so:
python setup.py develop
now apple
is globally available and you should never see a no module named apple
problem again, i.e. you can run py.test from the root folder or the tests folder.
You can read more about setup.py
in the Python Packaging User Guide at https://packaging.python.org/
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…