Skip to content

Commit

Permalink
build: Do not install tests in site-packages
Browse files Browse the repository at this point in the history
The current build installs the tests files into site-packages in the `tests`
folder, which is probably not what we want.

Signed-off-by: Ole Petter <[email protected]>
  • Loading branch information
oleorhagen committed Nov 12, 2023
1 parent 5862616 commit 24b030c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cfengine/cfbs",
packages=setuptools.find_packages(),
packages=setuptools.find_packages(exclude=["tests*"]),
package_data={'cfbs': ['VERSION']},
include_package_data=True,
classifiers=[
Expand Down

0 comments on commit 24b030c

Please sign in to comment.