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:
Amin Vakil 2020-07-12 02:52:15 +04:30 committed by GitHub
parent 7f76d8aff4
commit b31de003bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 6 deletions

View file

@ -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
),