mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-28 03:49:09 -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
|
@ -39,6 +39,7 @@ options:
|
|||
- A list of field names for every column.
|
||||
- This is needed if the CSV does not have a header.
|
||||
type: list
|
||||
elements: str
|
||||
unique:
|
||||
description:
|
||||
- Whether the C(key) used is expected to be unique.
|
||||
|
@ -164,7 +165,7 @@ def main():
|
|||
path=dict(type='path', required=True, aliases=['filename']),
|
||||
dialect=dict(type='str', default='excel'),
|
||||
key=dict(type='str'),
|
||||
fieldnames=dict(type='list'),
|
||||
fieldnames=dict(type='list', elements='str'),
|
||||
unique=dict(type='bool', default=True),
|
||||
delimiter=dict(type='str'),
|
||||
skipinitialspace=dict(type='bool'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue