mirror of
https://github.com/famedly/ansible-collection-matrix
synced 2024-11-10 05:34:16 +00:00
feat(tests/sanity): Update ignore-2.x.txt
This commit is contained in:
parent
5f90806675
commit
e4b5211b92
2 changed files with 13 additions and 5 deletions
|
@ -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:
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue