From 0325024f2c281e33daf50c022aa007e291ac441c Mon Sep 17 00:00:00 2001 From: Mark Chappell Date: Fri, 1 Oct 2021 15:05:59 +0200 Subject: [PATCH] Add tests/config.yml to tell recent versions of ansible-test we don't support Python<3.6 (#517) Add tests/config.yml to tell recent versions of ansible-test we don't support Python<3.6 SUMMARY (Ansible 2.12) ansible-test now has a config file that lets us limit tests to those relevant to Python>=3.6 Add this to simplify things. Unfortunately this hasn't been (and likely won't be) backported to older versions of Ansible, so there's a little while before we can drop the python 2.x compatability code, but this gets us started. ISSUE TYPE Feature Pull Request COMPONENT NAME tests/sanity ADDITIONAL INFORMATION Reviewed-by: Alina Buzachis Reviewed-by: None --- tests/config.yml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 tests/config.yml diff --git a/tests/config.yml b/tests/config.yml new file mode 100644 index 00000000000..5112f726881 --- /dev/null +++ b/tests/config.yml @@ -0,0 +1,2 @@ +modules: + python_requires: '>=3.6'