mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-12 15:45:20 +01:00
* description: create a file given its size, or resize it * add integration tests (filter Mac OS X < 11 for some of them)
35 lines
950 B
YAML
35 lines
950 B
YAML
---
|
|
- name: Ensure the test dir is present
|
|
file:
|
|
path: "{{ filesize_testdir }}"
|
|
state: directory
|
|
|
|
- name: Ensure the test file is absent
|
|
file:
|
|
path: "{{ filesize_testfile }}"
|
|
state: absent
|
|
|
|
- name: Run all tests and remove the workspace anyway
|
|
block:
|
|
- name: Include tasks to test error handling
|
|
include_tasks: errors.yml
|
|
|
|
- name: Include tasks to test basic behaviours
|
|
include_tasks: basics.yml
|
|
|
|
- name: Include tasks to test playing with floating point numbers
|
|
include_tasks: floats.yml
|
|
|
|
- name: Include tasks to test playing with sparse files
|
|
include_tasks: sparse.yml
|
|
when:
|
|
- not (ansible_os_family == 'Darwin' and ansible_distribution_version is version('11', '<'))
|
|
|
|
- name: Include tasks to test playing with symlinks
|
|
include_tasks: symlinks.yml
|
|
|
|
always:
|
|
- name: Remove test dir
|
|
file:
|
|
path: "{{ filesize_testdir }}"
|
|
state: absent
|