diff options
author | Matteo Centenaro <bugant@gmail.com> | 2017-07-11 22:57:37 +0200 |
---|---|---|
committer | w0rp <w0rp@users.noreply.github.com> | 2017-07-11 21:57:37 +0100 |
commit | 505d114a68f18cd018e2f92a47b024370bd7dde3 (patch) | |
tree | 1f9b9496d5efe08efcc6db6b82ff19f2d5d3374d /test/command_callback/python_paths/namespace_package_manifest/namespace/foo | |
parent | 768f761017e4d67d8724684df874006d5b04147d (diff) | |
download | ale-505d114a68f18cd018e2f92a47b024370bd7dde3.zip |
Look for ini file to spot python project root (#755)
* Look for ini file to spot project root
When looking for the project root folder it would be better
to check for some well-known init file instead of __init__.py.
Indeed, with python3 it is now possible to have namespace modules
where intermediate dirs are not required to include the __init__.py file.
* Break if statement conditions over several lines
* Add blank lines for the if block
* Add test for FindProjectRoot
* Typo: missing / for MANIFEST.in
* Fix test for non-namespace package
* Add more test cases
Diffstat (limited to 'test/command_callback/python_paths/namespace_package_manifest/namespace/foo')
-rw-r--r-- | test/command_callback/python_paths/namespace_package_manifest/namespace/foo/__init__.py | 0 | ||||
-rw-r--r-- | test/command_callback/python_paths/namespace_package_manifest/namespace/foo/bar.py | 0 |
2 files changed, 0 insertions, 0 deletions
diff --git a/test/command_callback/python_paths/namespace_package_manifest/namespace/foo/__init__.py b/test/command_callback/python_paths/namespace_package_manifest/namespace/foo/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/command_callback/python_paths/namespace_package_manifest/namespace/foo/__init__.py diff --git a/test/command_callback/python_paths/namespace_package_manifest/namespace/foo/bar.py b/test/command_callback/python_paths/namespace_package_manifest/namespace/foo/bar.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/command_callback/python_paths/namespace_package_manifest/namespace/foo/bar.py |