diff --git a/gooddata-fdw/setup.py b/gooddata-fdw/setup.py index 50e569400..f9e13e17c 100644 --- a/gooddata-fdw/setup.py +++ b/gooddata-fdw/setup.py @@ -25,7 +25,7 @@ license_file="LICENSE.txt", license_files=("LICENSE.txt",), install_requires=REQUIRES, - packages=find_packages(exclude=["tests"]), + packages=find_packages(exclude=["tests*"]), python_requires=">=3.7.0", project_urls={ "Documentation": "https://gooddata-fdw.readthedocs.io/en/v1.1.0", diff --git a/gooddata-pandas/setup.py b/gooddata-pandas/setup.py index 66bd5ee6e..623a902ca 100644 --- a/gooddata-pandas/setup.py +++ b/gooddata-pandas/setup.py @@ -24,7 +24,7 @@ license_file="LICENSE.txt", license_files=("LICENSE.txt",), install_requires=REQUIRES, - packages=find_packages(exclude=["tests"]), + packages=find_packages(exclude=["tests*"]), python_requires=">=3.7.0", project_urls={ "Documentation": "https://gooddata-pandas.readthedocs.io/en/v1.1.0", diff --git a/gooddata-sdk/setup.py b/gooddata-sdk/setup.py index a9606b211..7ca7684bf 100644 --- a/gooddata-sdk/setup.py +++ b/gooddata-sdk/setup.py @@ -30,7 +30,7 @@ license_file="LICENSE.txt", license_files=("LICENSE.txt",), install_requires=REQUIRES, - packages=find_packages(exclude=["tests"]), + packages=find_packages(exclude=["tests*"]), python_requires=">=3.7.0", project_urls={ "Documentation": "https://gooddata-sdk.readthedocs.io/en/v1.1.0",