mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-13 01:24:22 -07:00
[stable-1] Update CI (#1790)
* Update CI (#1782) * Update targets for CI for devel branch; move some targets to stable-2.10. * Skipping test on RHEL 8.3 (it is already skipped on RHEL 8.2). * Linting. * Shut 2.9/2.10 pylint complaints up. * More sanity. * Bump CI to FreeBSD 11.4, 12.2. (#1657) * Bump CI to FreeBSD 11.4, 12.2. * Make FreeBSD Python package selection more future-proof. (cherry picked from commitc1eb0a232c
) * Add macOS 11.1 tests (#1619) * Add macOS 11.1 tests. * Hopefully fix virtualenv.sh problems. (cherry picked from commit74174f11ff
) * Skip all postgresql tests on FreeBSD. * Skip kubevirt inventory tests on macOS.
This commit is contained in:
parent
2a8f04347d
commit
91acc44c34
42 changed files with 73 additions and 63 deletions
|
@ -1,5 +1,6 @@
|
|||
plugins/callback/hipchat.py pylint:blacklisted-name
|
||||
plugins/connection/lxc.py pylint:blacklisted-name
|
||||
plugins/module_utils/cloud.py pylint:bad-option-value # a pylint test that is disabled was modified over time
|
||||
plugins/module_utils/compat/ipaddress.py no-assert
|
||||
plugins/module_utils/compat/ipaddress.py no-unicode-literals
|
||||
plugins/module_utils/_mount.py future-import-boilerplate
|
||||
|
@ -552,6 +553,7 @@ plugins/modules/system/xfconf.py validate-modules:return-syntax-error
|
|||
plugins/modules/web_infrastructure/jenkins_plugin.py use-argspec-type-path
|
||||
plugins/modules/web_infrastructure/rundeck_acl_policy.py pylint:blacklisted-name
|
||||
scripts/inventory/gce.py pylint:blacklisted-name
|
||||
tests/unit/plugins/module_utils/postgresql/test_postgres.py pylint:bad-option-value # a pylint test that is disabled was modified over time
|
||||
tests/unit/plugins/modules/cloud/google/test_gcp_forwarding_rule.py future-import-boilerplate
|
||||
tests/unit/plugins/modules/cloud/google/test_gcp_forwarding_rule.py metaclass-boilerplate
|
||||
tests/utils/shippable/check_matrix.py replace-urlopen
|
||||
|
|
|
@ -14,29 +14,18 @@ plugins/modules/cloud/centurylink/clc_server.py validate-modules:parameter-list-
|
|||
plugins/modules/cloud/centurylink/clc_server_snapshot.py validate-modules:parameter-list-no-elements
|
||||
plugins/modules/cloud/docker/docker_container.py use-argspec-type-path # uses colon-separated paths, can't use type=path
|
||||
plugins/modules/cloud/google/gcdns_record.py validate-modules:parameter-list-no-elements
|
||||
plugins/modules/cloud/google/gce.py pylint:blacklisted-name
|
||||
plugins/modules/cloud/google/gce.py validate-modules:parameter-list-no-elements
|
||||
plugins/modules/cloud/google/gce.py yamllint:unparsable-with-libyaml
|
||||
plugins/modules/cloud/google/gce_eip.py pylint:blacklisted-name
|
||||
plugins/modules/cloud/google/gce_eip.py validate-modules:parameter-list-no-elements
|
||||
plugins/modules/cloud/google/gce_img.py pylint:blacklisted-name
|
||||
plugins/modules/cloud/google/gce_instance_template.py pylint:blacklisted-name
|
||||
plugins/modules/cloud/google/gce_instance_template.py validate-modules:doc-missing-type
|
||||
plugins/modules/cloud/google/gce_instance_template.py validate-modules:parameter-list-no-elements
|
||||
plugins/modules/cloud/google/gce_labels.py validate-modules:parameter-list-no-elements
|
||||
plugins/modules/cloud/google/gce_lb.py pylint:blacklisted-name
|
||||
plugins/modules/cloud/google/gce_lb.py validate-modules:parameter-list-no-elements
|
||||
plugins/modules/cloud/google/gce_mig.py pylint:blacklisted-name
|
||||
plugins/modules/cloud/google/gce_mig.py validate-modules:parameter-list-no-elements
|
||||
plugins/modules/cloud/google/gce_net.py pylint:blacklisted-name
|
||||
plugins/modules/cloud/google/gce_net.py validate-modules:parameter-list-no-elements
|
||||
plugins/modules/cloud/google/gce_pd.py pylint:blacklisted-name
|
||||
plugins/modules/cloud/google/gce_pd.py validate-modules:parameter-list-no-elements
|
||||
plugins/modules/cloud/google/gce_snapshot.py pylint:blacklisted-name
|
||||
plugins/modules/cloud/google/gce_snapshot.py validate-modules:parameter-list-no-elements
|
||||
plugins/modules/cloud/google/gce_tag.py pylint:blacklisted-name
|
||||
plugins/modules/cloud/google/gce_tag.py validate-modules:parameter-list-no-elements
|
||||
plugins/modules/cloud/google/gcp_backend_service.py pylint:blacklisted-name
|
||||
plugins/modules/cloud/google/gcp_backend_service.py validate-modules:parameter-list-no-elements
|
||||
plugins/modules/cloud/google/gcp_forwarding_rule.py validate-modules:parameter-list-no-elements
|
||||
plugins/modules/cloud/google/gcp_healthcheck.py pylint:blacklisted-name
|
||||
|
@ -551,7 +540,6 @@ plugins/modules/system/xfconf.py validate-modules:parameter-state-invalid-choice
|
|||
plugins/modules/system/xfconf.py validate-modules:return-syntax-error
|
||||
plugins/modules/web_infrastructure/jenkins_plugin.py use-argspec-type-path
|
||||
plugins/modules/web_infrastructure/rundeck_acl_policy.py pylint:blacklisted-name
|
||||
scripts/inventory/gce.py pylint:blacklisted-name
|
||||
tests/unit/plugins/modules/cloud/google/test_gcp_forwarding_rule.py future-import-boilerplate
|
||||
tests/unit/plugins/modules/cloud/google/test_gcp_forwarding_rule.py metaclass-boilerplate
|
||||
tests/utils/shippable/check_matrix.py replace-urlopen
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
plugins/callback/hipchat.py pylint:blacklisted-name
|
||||
plugins/connection/lxc.py pylint:blacklisted-name
|
||||
plugins/module_utils/cloud.py pylint:bad-option-value # a pylint test that is disabled was modified over time
|
||||
plugins/module_utils/compat/ipaddress.py no-assert
|
||||
plugins/module_utils/compat/ipaddress.py no-unicode-literals
|
||||
plugins/module_utils/_mount.py future-import-boilerplate
|
||||
|
@ -482,6 +483,7 @@ plugins/modules/web_infrastructure/nginx_status_facts.py validate-modules:deprec
|
|||
plugins/modules/web_infrastructure/nginx_status_facts.py validate-modules:invalid-documentation
|
||||
plugins/modules/web_infrastructure/rundeck_acl_policy.py pylint:blacklisted-name
|
||||
scripts/inventory/gce.py pylint:blacklisted-name
|
||||
tests/unit/plugins/module_utils/postgresql/test_postgres.py pylint:bad-option-value # a pylint test that is disabled was modified over time
|
||||
tests/unit/plugins/modules/cloud/google/test_gcp_forwarding_rule.py future-import-boilerplate
|
||||
tests/unit/plugins/modules/cloud/google/test_gcp_forwarding_rule.py metaclass-boilerplate
|
||||
tests/utils/shippable/check_matrix.py replace-urlopen
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue