From fb57aa5b90eb30e5eb264cef49fcd0f61a057350 Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Mon, 16 May 2022 14:28:07 +0530 Subject: [PATCH] Added gating tests --- tests/tests.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tests/tests.yml diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..1221d83 --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,21 @@ +--- +- hosts: localhost + roles: + - role: standard-test-source + tags: + - always + + - role: standard-test-basic + tags: + - classic + required_packages: + - python3-pytest + - python3-appdirs + - python3-pytz + - python3-six + tests: + - simple: + dir: ./source + run: python3 -m pytest -v --ignore tests/test_ftpfs.py --ignore tests/test_osfs.py --ignore tests/test_subfs.py --ignore tests/test_tempfs.py + +