mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-29 20:39:56 +00:00
9 lines
291 B
Python
9 lines
291 B
Python
import setuptools
|
|
|
|
|
|
def test_package_list_match_inits():
|
|
where = "./src"
|
|
package_list = set(setuptools.find_packages(where))
|
|
namespace_packages = set(setuptools.find_namespace_packages(where))
|
|
assert package_list == namespace_packages, "are you missing a package init file?"
|