Felix Fontein
8740fbd7cb
Bump acme test container. ( #79783 ) ( #79816 )
...
(cherry picked from commit 5fb8bc3ddb
)
2 years ago
Matt Clay
4fe7aae21d
[stable-2.14] ansible-test - Specify config path in plugin error ( #79881 ) ( #79977 )
...
(cherry picked from commit d48d1c23df
)
2 years ago
Matt Clay
7027806a77
[stable-2.14] ansible-test - Fix various type hinting issues. ( #79798 ) ( #79976 )
...
* ansible-test - Add missing type hints.
* ansible-test - Remove redundant type hints.
* ansible-test - Fix return type annotations.
* ansible-test - Add assert, casts to assist mypy.
* ansible-test - Fix incorrect type hints.
* ansible-test - Remove no-op code.
* ansible-test - Fix incorrect types.
* ansible-test - Fix method signature mismatch.
(cherry picked from commit c9f20aedc0
)
2 years ago
Matt Clay
6d53f61f9e
[stable-2.14] ansible-test - Remove obsolete DirectoryTarget. ( #79975 )
...
This code has been unused since at least the 2.9 release.
(cherry picked from commit 5f58015527
)
2 years ago
Matt Clay
6adea5fa5c
[stable-2.14] ansible-test - fix warning to include image name ( #79560 ) ( #79973 )
...
(cherry picked from commit 0a12d8a5bc
)
Co-authored-by: Martin Krizek <martin.krizek@gmail.com>
2 years ago
Matt Clay
50b6d3515c
[stable-2.14] ansible-test - Avoid direct use of `errno`. ( #79972 )
...
Error handling on Python 3.x no longer requires the use of `errno` to identify specific errors.
(cherry picked from commit f9715f436c
)
2 years ago
Jordan Borean
8e9834fde5
ansible-test - fix ps argspec check inside cmdlet ( #79699 )
...
* ansible-test - fix ps argspec check inside cmdlet
* Added error condition test
* Fix sanity problem
(cherry picked from commit ee33be9484
)
2 years ago
Evgeni Golov
a398724a31
[stable-2.14] validate-modules: don't fail on invalid YAML ( #79682 )
...
* validate-modules: don't fail on invalid YAML
When validate-modules encounters invalid YAML (e.g. in the EXAMPLES
section), it tries to reformat the exception to include the line number
in the Python file instead of the line number of the embedded YAML
document. However, PyYAML doesn't allow modification of the Mark object
(anymore) which leads to a new exception being raised, instead of
reporting the original exception.
As the original exception is not needed in other places anymore, we
don't have to modify it at all and can just compute the right line
number when reporting the error via ansible-test.
Fixes : #75837
* Add test for invalid module doc YAML syntax.
Co-authored-by: Matt Clay <matt@mystile.com>
(cherry picked from commit a7111c4dbb
)
Co-authored-by: Evgeni Golov <evgeni@golov.de>
2 years ago
Matt Clay
acc8c3ccf8
[stable-2.14] ansible-test - Improve container startup handling.
...
Also improve the ansible-test-container integration test:
- Add coverage for the no-probe code path.
- Add work-arounds for centos6 containers (to support backporting).
- Avoid systemd debug when the container doesn't use cgroup.
(cherry picked from commit 04fc98c794
)
Co-authored-by: Matt Clay <matt@mystile.com>
2 years ago
Matt Clay
6ebb1324d4
[stable-2.14] ansible-test - Support RSA SHA-1 for SSH clients.
...
(cherry picked from commit 75b60b17ee
)
Co-authored-by: Matt Clay <matt@mystile.com>
2 years ago
Matt Clay
240156ff67
[stable-2.14] ansible-test - Fix `--prime-containers` and `--explain` ( #79581 )
...
* Remove unused code.
* Fix explain errors.
* Fix `--prime-containers` with docker on cgroup v2.
(cherry picked from commit da3b1d3f50
)
Co-authored-by: Matt Clay <matt@mystile.com>
2 years ago
Matt Clay
578c96b854
[stable-2.14] ansible-test - Fix target PyPI proxy config.
...
(cherry picked from commit dcc08eec35
)
Co-authored-by: Matt Clay <matt@mystile.com>
2 years ago
Matt Clay
5e2806b502
[stable-2.14] ansible-test - Fix completion error in Python 3.11. ( #79500 )
...
(cherry picked from commit 38fe342
)
Co-authored-by: Matt Clay <matt@mystile.com>
2 years ago
Matt Clay
3ae796bdcf
[stable-2.14] ansible-test - Improve container management. ( #78550 ) ( #79507 )
...
* [stable-2.14] ansible-test - Improve container management. (#78550 )
See changelogs/fragments/ansible-test-container-management.yml for details..
(cherry picked from commit cda16cc5e9
)
Co-authored-by: Matt Clay <matt@mystile.com>
* ansible-test - Fix container detection. (#79530 )
(cherry picked from commit 80d2f8da02
)
2 years ago
Matt Davis
047affbdc5
Prevent stdio deadlock in forked children ( #79522 ) ( #79539 )
...
* background threads writing to stdout/stderr can cause children to deadlock if a thread in the parent holds the internal lock on the BufferedWriter wrapper
* prevent writes to std handles during fork by monkeypatching stdout/stderr during display startup to require a mutex lock with fork(); this ensures no background threads can hold the lock during a fork operation
* add integration test that fails reliably on Linux without this fix
(cherry picked from commit 1424484be0
)
2 years ago
Matt Clay
713f5c5ae8
[stable-2.14] ansible-test - Improve pylint command consistency. ( #78896 )
...
* ansible-test - Improve pylint command consistency.
Co-authored-by: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>
(cherry picked from commit bc274f5
)
Co-authored-by: Matt Clay <matt@mystile.com>
2 years ago
Matt Clay
edbd88d3f1
[stable-2.14] ansible-test - Fix and update documentation links.
...
(cherry picked from commit 938c0fa944
)
Co-authored-by: Matt Clay <matt@mystile.com>
2 years ago
Matt Clay
4653d1f4a0
ansible-test - Update default container.
2 years ago
Matt Clay
b7f9d839e0
ansible-test - Update base and default containers.
2 years ago
Matt Clay
418b92b323
[stable-2.14] ansible-test - Fix pylint support on Python 3.11.
...
(cherry picked from commit 645b6b8581
)
Co-authored-by: Matt Clay <matt@mystile.com>
2 years ago
Sviatoslav Sydorenko
51c0d50631
[stable-2.14] Restrict `wheel` below v0.38.0 under Pythons < 3.7 ( #79187 )
...
* Restrict `wheel` below v0.38.0 under Pythons < 3.7
* Add a change note for PR #79187
* Update changelogs/fragments/79187--wheel-0.38.0.yml
Co-authored-by: Matt Clay <matt@mystile.com>
* Use constraints file when installing wheel.
Co-authored-by: Matt Clay <matt@mystile.com>
(cherry picked from commit a76bbb18a5
)
Co-authored-by: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>
2 years ago
Matt Clay
c6511e3a5b
[stable-2.14] ansible-test - Update pylint to 2.15.4.
...
(cherry picked from commit 14e7f05318
)
Co-authored-by: Matt Clay <matt@mystile.com>
2 years ago
Matt Clay
f46bbb2140
[stable-2.14] ansible-test - Update distro containers to 4.8.0.
...
The updated containers include coverage 6.5.0..
(cherry picked from commit 5b239acb77
)
Co-authored-by: Matt Clay <matt@mystile.com>
2 years ago
Matt Clay
53bac70257
[stable-2.14] ansible-test - Update coverage to version 6.5.0. ( #78945 )
...
(cherry picked from commit 20c1252212
)
2 years ago
Jordan Borean
04fe7b374d
ansible-test validate-module - support sidecar docs ( #78904 ) ( #78933 )
...
(cherry picked from commit be4807b712
)
2 years ago
Matt Clay
4655fe6d8b
[stable-2.14] ansible-test - Fix integration test target filter. ( #78862 )
...
- Allow disabled, unsupported, unstable and destructive integration test targets to be selected using their respective prefixes.
- Allow unstable tests to run when targeted changes are made and the ``--allow-unstable-changed`` option is specified (resolves https://github.com/ansible/ansible/issues/74213 ).
(cherry picked from commit d3d7785472
)
Co-authored-by: Matt Clay <matt@mystile.com>
2 years ago
Matt Clay
7aff371ba5
ansible-test - Fix default container version. ( #78854 )
2 years ago
Matt Clay
38f706a2a3
ansible-test - Update base and default containers. ( #78847 )
2 years ago
Matt Martz
900010571d
[stable-2.14] Add `use_rsa_sha2_algorithms` option for paramiko ( #78789 ) ( #78842 )
...
Fixes #76737
Fixes #77673
Co-authored-by: Matt Clay <matt@mystile.com>
(cherry picked from commit 76b7466
)
Co-authored-by: Matt Martz <matt@sivel.net>
2 years ago
Matt Clay
85dba943ab
[stable-2.14] ansible-test - Update Python 3.11 support. ( #78840 ) ( #78841 )
...
- Update sanity test requirements to fully support Python 3.11.
- Make Python 3.11 the default in the base and default test containers.
(cherry picked from commit 4d25233ece
)
2 years ago
Matt Clay
e5e87a3927
ansible-test - Update pylint to 2.15.3. ( #78811 )
2 years ago
Matt Clay
7683c0ae54
ansible-test - Update base and default containers. ( #78774 )
2 years ago
Matt Clay
79f67ed561
ansible-test - Fix container error handling. ( #78739 )
2 years ago
Matt Clay
8a7b89c2f4
ansible-test - Update distro containers. ( #78729 )
2 years ago
Matt Clay
b3854161a0
ansible-test - Update coverage to version 6.4.4. ( #78728 )
2 years ago
Matt Clay
c56b35598f
ansible-test - Upgrade pylint. ( #78727 )
...
This version of pylint now supports Python 3.11.
2 years ago
Matt Clay
38a82a5cc4
ansible-test - Remove Fedora 35 support. ( #78720 )
2 years ago
Sloane Hertel
12cec69545
Fix validate-modules version_added test ( #78554 )
2 years ago
Matt Clay
38db9cf417
ansible-test - Update test containers. ( #78615 )
...
The test containers no longer use the `VOLUME` instruction.
2 years ago
Matt Clay
4187707f03
ansible-test - Use --tmpfs to run containers. ( #78605 )
2 years ago
Matt Clay
ece85abbc4
ansible-test - Verify executables are executable. ( #78606 )
2 years ago
Matt Clay
d683c5bd21
ansible-test - Fix Ubuntu 20.04 bootstrapping. ( #78551 )
2 years ago
Matt Clay
8e96c27888
ansible-test - Update base and default containers. ( #78532 )
2 years ago
Matt Clay
69ceb31600
ansible-test - Update sanity test requirements. ( #78528 )
2 years ago
Matt Clay
99016653a2
ansible-test - Fix self-test change handling. ( #78521 )
2 years ago
Matt Clay
2b63fdd1b8
ansible-test - Fix ansible-doc sanity test FQCN. ( #78518 )
2 years ago
Matt Clay
2fedde6356
ansible-test - Update distro test containers. ( #78506 )
2 years ago
Matt Clay
8367af9cdd
ansible-test - No locale warning with delegation. ( #78505 )
...
The locale warning for the origin host is not relevant when delegation is used.
It is also not relevant when non-test commands are in use.
2 years ago
Matt Clay
47804fcdf5
ansible-test - Update coverage to 6.4.3. ( #78504 )
2 years ago
Matt Clay
89862fda3b
ansible-test - Sanity test code cleanup. ( #78497 )
2 years ago