Commit Graph

3376 Commits (a8317c2393b5986b9afbfb20e378c16cbb096582)
 

Author SHA1 Message Date
Philippe Kueck bdbc9fe827
changelog entry for #827 3 years ago
Philippe Kueck a2dcedabda
fixes #827
some ansible collections write their own module classes derived from
ansible.module_utils.basic.AnsibleModule, thus lacking that import
in the plugin file. NewStylePlanner was unable to detect these plugins
as Ansiballz.

This commit extends the search pattern for NewStylePlanner to also
detect ansible_collections imports.
3 years ago
Stefano Rivera b672eafcb0 Support multi-word cpusets
From cpuset(7):

> For masks longer than one word, a comma separator is used between
> words. Words are displayed in big-endian order, which has the most
> significant bit first. The hex digits within a word are also in
> big-endian order.
3 years ago
Stefano Rivera 184ff0f507 Skip test_unwriteable when tests are run as root
Writes by root ignore fs permissions, so this test will fail when run as root.
3 years ago
Steven Robertson 36f3e3b28c
Merge pull request #816 from moreati/issue815
Expand coverage of mitogen/<distro>-test docker images
3 years ago
Alex Willmer 6f28e11618 tests: Add Tox environments for debian 10, 11; centos 8; ubuntu 3 years ago
Alex Willmer ac7505d624 tests: Add centos 8; debian 10, 11; ubuntu 16.04, 18.04, 20.04 test images 3 years ago
Alex Willmer 6bf58c3cfb tests: Don't add local user to Docker containers 3 years ago
Alex Willmer a8e8cf91cb tests: Rebuild Docker containers
A few changes are bundled in this
 - Ansible 2.10.x and Mitogen 0.3.x are used to build nearly all images
   (Ansile 2.3.x is retained for CentOS 5, because it uses Python 2.4).
 - Tox is used to install/run Ansible, replacing build_docker_images.py
 - A static inventory, identifying containers by name rather than ID.
 - debian-test image is renamed to debian9-test
 - debian9-test image is now based on debian:9
 - centos6-test image is now based on moreati/centos6-vault
   following the same scheme as centos5-test.
 - Images are now uploaded to Amazon Elastic Container Registry (ECR).
   See #809.
 - Debian recommended packages aren't installed (e.g. build-essential)
 - Python 2.x and Python 3.x are installed wherever available.
 - Python Virtualenv is installed wherever available.
3 years ago
Alex Willmer 60fbea4b59
Merge pull request #807 from moreati/issue-templates
chore: Add issue templates for 0.2 vs 0.3 releases
3 years ago
Alex Willmer 48e6da4f44 chore: Add issue templates for 0.2 vs 0.3 releases
These should automatically tag bug reports, reducing triage effort.
3 years ago
Alex Willmer ba27bd6445
Merge pull request #810 from moreati/issue809
tests: Fix throttling of Docker pulls
3 years ago
Alex Willmer e67e4b83b4 tests: Fix throttling of Docker pulls
fixes #809
3 years ago
Alex Willmer ab2a26b8f6
Merge pull request #785 from s1113950/pluginLoaderBadVersionErr
Checks Ansible version before loaders are loaded
3 years ago
Steven Robertson 234dde5fc1 check Ansible version before loaders are loaded 3 years ago
Steven Robertson 9546bd7328
Merge pull request #774 from moreati/distro-vs-distros
tests: Correct DISTRO vs DISTROS usage in CI configurations
3 years ago
Alex Willmer b71fbe528c
Merge branch 'master' into distro-vs-distros 3 years ago
Alex Willmer 59716a8788
Merge pull request #801 from moreati/0.3.0rc1-release
Prepare 0.3.0rc1 release
3 years ago
Alex Willmer 0aec57e793
Merge branch 'master' into 0.3.0rc1-release 3 years ago
Alex Willmer 1dd330d3a1
Merge pull request #783 from s1113950/fix0.3.0naming
fix 0.3.0-rc.0 version reporting
3 years ago
Alex Willmer e6892979f0
Merge branch 'master' into fix0.3.0naming 3 years ago
Steven Robertson a71a2915b8 change version to having separate tuple entries for each 3 years ago
Alex Willmer 9b1617f26f Bump version to 0.3.0rc1 3 years ago
Alex Willmer 28ea0067c6 setup: Add long_description, based on README 3 years ago
Alex Willmer a6387f69a8 setup: Declare MacOS/OSX support 3 years ago
Alex Willmer 0a28549c47 setup: Declare supported Python versions (2.4-2.7, 3.6+) 3 years ago
Alex Willmer 737e712024 setup: Update project URL 3 years ago
Alex Willmer f0ffd1616c Declare universal wheel support
This mean the package is single source compatible with Python 2.x and
3.x. There is no need to build separate wheels.
3 years ago
Alex Willmer c70244cdba
Merge pull request #739 from MetricMike/master
Fixes RuntimeWarning for improper buffering on local connection in Python 3.8+
3 years ago
Alex Willmer fd8c2d3702
Merge branch 'master' into master 3 years ago
Alex Willmer f835fe3953
Merge pull request #775 from moreati/python-3.9
tests: Add Python 3.9 coverage
3 years ago
Alex Willmer bce3bab3e8 Add the msvcrt moduleto the default module deny list
Commit https://github.com/python/cpython/commit/880d42a3b247 (first
released in Python 3.8a0) moved an import of msvcrt from an if <win32>
block, into a try/except block. So now the import is tried even on Linux
or MacOS.

https://docs.python.org/3/library/msvcrt.html is a Windows specific
builtin.
3 years ago
Alex Willmer ceb0a94467 Explain why the Python 2.x thread module is blacklisted
Based on the original commit I believe it is only an optimization.
However I could be wrong. I intend to request review of this part.
3 years ago
Alex Willmer 1e72ebaf8b tests: Update test coverage to Python 3.9
The Travis Linux distribution must be upgraded because the Trusty
(Ubuntu 14.04) image does not have Python 3.9. Xenial (Ubuntu 16.04) is
the earliest version that offers Python 3.9.

I have not chosen a later release, in order to aid restoration of Python
2.4 - 2.6 tests.
3 years ago
Alex Willmer 4b39013ef4 tests: Compatiblity shim for threading.Thread.is_alive()
On Python >= 3.8 thread.isAlive() is deprecated (removed in Python 3.9.
On Python <= 2.5 thread.is_alive() isn't present (added in Python 2.6).
3 years ago
Michael Weigle 6b5a46ccd0
Fixes RuntimeWarning for improper bufferring on local connection 3 years ago
Alex Willmer 522085ab35
Merge pull request #788 from moreati/tests-resource_intensive-tag
tests: Tag resource intensive tasks, to skip when strategy=linear
3 years ago
Alex Willmer 7cc9145360
Merge branch 'master' into tests-resource_intensive-tag 3 years ago
Alex Willmer a40f84839d
Merge pull request #797 from moreati/docstrings
tests: docstrings for ci_lib module use in Continuous Integration tests
3 years ago
Alex Willmer f5b3fab04c
Merge branch 'master' into docstrings 3 years ago
Alex Willmer 1a0951c664
Merge branch 'master' into tests-resource_intensive-tag 3 years ago
Alex Willmer ee17634c3b
Merge pull request #790 from moreati/docker-diet
tests: Move test container images to Amazon Elastic Container Registry
3 years ago
Alex Willmer 9111778823
Merge branch 'master' into docker-diet 3 years ago
Alex Willmer db354df331
Merge branch 'master' into fix0.3.0naming 3 years ago
Alex Willmer 6e0a01f8a0
Merge pull request #782 from moreati/tox
tests: Add unofficial Tox environments for Ansible tests
3 years ago
Alex Willmer 25446cd698 tests: Throttle docker pulls for Ansible tests
I hope this will prevent AWS Elastic Container Registry returning 429:
Too Many Requests error, due to the burst of activity from multiple VMs,
when a CI build begins.
3 years ago
Alex Willmer 99235071a3 tests: docstrings for ci_lib 3 years ago
Alex Willmer 1c7e107809 tests: Use AWS Elastic Container registry for test images
This replaces use of Docker Hub, which now rate limits API calls and
causing CI builds to fail.

refs #791
3 years ago
Alex Willmer adbed36dd9 tests: Avoid double docker pull on Azure Pipes 3 years ago
Alex Willmer bb271d8d00 tests: Tag resource intensive tasks, to skip when strategy=linear
The ansible_mitogen test suite takes over an hour when Ansible is not
accelerated by Mitogen. This change aims to reduce that by skipping
tests with a large number of iterations when the linear strategy is
chosen.

The tagged tests are intended to uncover Mitogen resource leaks. Since
Mitogen is not invoked when strategy=linear, the slight reduction in
test coverage is an acceptable trade off.
3 years ago