summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2023-06-06 23:48:16 +0200
committerGitHub <noreply@github.com>2023-06-06 23:48:16 +0200
commit6e325d9e4dbdc020eb520a81148866d988a5dbc5 (patch)
treed9b37e218ec640790a387056f90206c89821dbdb /test
parentIndicate which args can be provided multiple times. Fixes #22396 (#80970) (diff)
downloadansible-6e325d9e4dbdc020eb520a81148866d988a5dbc5.tar.xz
ansible-6e325d9e4dbdc020eb520a81148866d988a5dbc5.zip
Clean up MANIFEST.in (#80688)
* Remove unnecessary MANIFEST.in commands This eliminates more setuptools warnings during build. * Sort MANIFEST.in Now that only include commands are used, the order of the commands no longer effects the build output.
Diffstat (limited to 'test')
-rw-r--r--test/sanity/code-smell/package-data.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/sanity/code-smell/package-data.py b/test/sanity/code-smell/package-data.py
index 8e242d9564..baa55d9a02 100644
--- a/test/sanity/code-smell/package-data.py
+++ b/test/sanity/code-smell/package-data.py
@@ -32,8 +32,6 @@ def assemble_files_to_ship(complete_file_list):
'hacking/azp/*',
'hacking/tests/*',
'hacking/ticket_stubs/*',
- 'test/sanity/code-smell/botmeta.*',
- 'test/sanity/code-smell/release-names.*',
'test/results/.tmp/*',
'test/results/.tmp/*/*',
'test/results/.tmp/*/*/*',
@@ -56,8 +54,6 @@ def assemble_files_to_ship(complete_file_list):
'hacking/report.py',
'hacking/return_skeleton_generator.py',
'hacking/test-module',
- 'test/lib/ansible_test/_internal/commands/sanity/bin_symlinks.py',
- 'test/lib/ansible_test/_internal/commands/sanity/integration_aliases.py',
'.cherry_picker.toml',
'.mailmap',
# Generated as part of a build step
@@ -79,11 +75,6 @@ def assemble_files_to_ship(complete_file_list):
'hacking/env-setup.fish',
'MANIFEST',
'setup.cfg',
- # docs for test files not included in sdist
- 'docs/docsite/rst/dev_guide/testing/sanity/bin-symlinks.rst',
- 'docs/docsite/rst/dev_guide/testing/sanity/botmeta.rst',
- 'docs/docsite/rst/dev_guide/testing/sanity/integration-aliases.rst',
- 'docs/docsite/rst/dev_guide/testing/sanity/release-names.rst',
))
# These files are generated and then intentionally added to the sdist
@@ -117,8 +108,6 @@ def assemble_files_to_install(complete_file_list):
"""
ignore_patterns = (
# Tests excluded from sdist
- 'test/lib/ansible_test/_internal/commands/sanity/bin_symlinks.py',
- 'test/lib/ansible_test/_internal/commands/sanity/integration_aliases.py',
)
pkg_data_files = []