You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/support
Toshio Kuratomi 39b3942048 Remove left hand side slicing
Left hand side slicing is confusing and slower but maybe more memory
efficient in some circumstances.  There is one case where it adds to
code safety: when it's used to substitute a different list in place of a
slice of the original list and the original list could have been bound
to a different variable in some other code.  (The most likely case of
this is when it's a global variable and some other code might import
that variable name).

Because of the confusion factor we think it should only be used for the
safety case or where it's been benchmarked and shown to have some sort
of documentatble improvement.  At the moment, only one piece of code
falls into those categories so this PR removes all the other instances
of left hand side slicing.
4 years ago
..
integration/plugins Remove left hand side slicing 4 years ago
network-integration/collections/ansible_collections First batch of incidental integration tests. (#67717) 4 years ago
windows-integration Internally redirect win modules to collection name (#68317) 4 years ago
README.md add readme to test/support (#68450) 4 years ago

README.md

IMPORTANT!

Files under this directory are not actual plugins and modules used by Ansible and as such should not be modified. They are used for testing purposes only (and are temporary).

In almost every case, pull requests affecting files under this directory will be closed.

You are likely looking for something under https://github.com/ansible-collections/ instead.