Skip to content

Commit

Permalink
CI: ansible-core devel removed Python 3.7 support, no longer allows '…
Browse files Browse the repository at this point in the history
…vars:' with lists (#8190)

* Ansible-core devel removed Python 3.7 support.

* Do not use 'vars' with lists.
  • Loading branch information
felixfontein authored Apr 4, 2024
1 parent e4e091a commit 13d0310
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .azure-pipelines/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ stages:
nameFormat: Python {0}
testFormat: devel/units/{0}/1
targets:
- test: 3.7
- test: 3.8
- test: 3.9
- test: '3.10'
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/targets/lookup_lmdb_kv/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
- item.0 == 'nl'
- item.1 == 'Netherlands'
vars:
- lmdb_kv_db: jp.mdb
lmdb_kv_db: jp.mdb
with_community.general.lmdb_kv:
- n*
- assert:
that:
- item == 'Belgium'
vars:
- lmdb_kv_db: jp.mdb
lmdb_kv_db: jp.mdb
with_community.general.lmdb_kv:
- be

0 comments on commit 13d0310

Please sign in to comment.