Skip to content

Commit 34a1051

Browse files
authored
Update test-req fixing CI issues (ansible-collections#634)
* test changes * check * update readme * update comments * skip a fqcn check
1 parent baa76a6 commit 34a1051

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.ansible-lint

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
profile: production
33
exclude_paths:
44
- changelogs/changelog.yaml
5+
- tests/unit/plugins/action/network/test_network.py
56
skip_list:
67
# ansible-lint does not like the `import-3.11` ignore in tests/sanity/ignore-*.txt
78
- sanity[cannot-ignore]

test-requirements.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ pytest-cov
1010

1111
# The following are 3rd party libs for cli_parse
1212
ntc_templates
13-
# 21.4 changed the output of an error message we check in tests
13+
# 21.4 changed the output of an error message we checked in the tests
1414
pyats >= 21.4 ; python_version < '3.11'
15-
genie >= 21.4 ; python_version < '3.11'
15+
# fix genie version for python version less than 3.11
16+
genie == 24.3 ; python_version < '3.11'
17+
# use the latest genie version for every Python version greater than 3.11
18+
genie
1619
passlib

0 commit comments

Comments
 (0)