feat(tests/sanity): Update ignore-2.x.txt

This commit is contained in:
Jadyn Emma Jaeger 2022-08-02 14:11:31 +02:00
parent 5f90806675
commit e4b5211b92
No known key found for this signature in database
GPG key ID: 632410170049FDDA
2 changed files with 13 additions and 5 deletions

View file

@ -10,20 +10,28 @@ stages:
# Debian Stable
sanity 3.9:
variables: { PYTHON_VERSION: "3.9", ANSIBLE_VERSION: "2.13.2" }
variables:
PYTHON_VERSION: "3.9"
ANSIBLE_VERSION: "2.13.2"
extends: .ansible-test-sanity
# Latest stable Python
sanity 3.10:
variables: { PYTHON_VERSION: "3.10", ANSIBLE_VERSION: "2.13.2" }
variables:
PYTHON_VERSION: "3.10"
ANSIBLE_VERSION: "2.13.2"
extends: .ansible-test-sanity
unit:
variables: { PYTHON_VERSION: "3.10" }
variables:
PYTHON_VERSION: "3.10"
ANSIBLE_VERSION: "2.13.2"
extends: .ansible-test-units
integration:
variables: { PYTHON_VERSION: "3.10" }
variables:
PYTHON_VERSION: "3.10"
ANSIBLE_VERSION: "2.13.2"
extends: .ansible-test-integration
black:

View file

@ -1,5 +1,5 @@
#!/usr/bin/env bash
cd ../../
while read -r line; do
find plugins/modules -name "*.py" | xargs -I {} -n 1 printf "{} $line\n"
find plugins -name "*.py" ! -path "plugins/module_utils/*" | xargs -I {} -n 1 printf "{} $line\n"
done <"tests/sanity/ignore.template"