mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-03 07:41:30 -07:00
Reduce ignored files sanity tests (#639)
* Remove all files ignores to see errors * Fix * Revert archive.py as its change should be discussed in another PR * Ignore archive.py * Revert xml * Fix
This commit is contained in:
parent
7f76d8aff4
commit
b31de003bd
4 changed files with 4 additions and 6 deletions
|
@ -46,6 +46,7 @@ options:
|
|||
- A list of files to extract from the image.
|
||||
- Extracting directories does not work.
|
||||
type: list
|
||||
elements: str
|
||||
required: yes
|
||||
force:
|
||||
description:
|
||||
|
@ -99,7 +100,7 @@ def main():
|
|||
argument_spec=dict(
|
||||
image=dict(type='path', required=True, aliases=['path', 'src']),
|
||||
dest=dict(type='path', required=True),
|
||||
files=dict(type='list', required=True),
|
||||
files=dict(type='list', elements='str', required=True),
|
||||
force=dict(type='bool', default=True, aliases=['thirsty']),
|
||||
executable=dict(type='path'), # No default on purpose
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue