Important
During the end of October 2018 the Molecule Project was moved to its new home under Ansible by Red Hat.
- To see what's planned see the Molecule Project Board.
- Join the Molecule community working group if you would like to influence the direction of the project.
The Molecule project has moved:
old location: https://github.com/metacloud/molecule
new location: https://github.com/ansible/molecule
If you have the source checked out you should use git remote set-url origin
to point to the new location.
Please follow GitHub's official changing a remote's URL guide.
For people that use the Docker image, we are now publishing to a new location Molecule on quay.io.
old location: https://hub.docker.com/r/retr0h/molecule/
new location: https://quay.io/repository/ansible/molecule
How to use:
docker pull quay.io/ansible/molecule:latest
Want to know about releases, subscribe to ansible-announce list
Join us in #ansible-molecule
on freenode, or molecule-users Forum.
The full list of Ansible email lists and IRC channels can be found in the communication page.
- We are interested in various different kinds of improvement for Molecule; please feel free to raise an Issue if you would like to work on something major to ensure efficient collaboration and avoid duplicate effort.
- Create a topic branch from where you want to base your work.
- Check for unnecessary whitespace with
git diff --check
before committing. Please see formatting and linting documentation for further commands. - Make sure you have added tests for your changes.
- You must use
git commit --signoff
for any commit to be merged, and agree that usage of--signoff
constitutes agreement with the terms of DCO 1.1. - Run all the tests to ensure nothing else was accidentally broken.
- Reformat the code by following the formatting section below.
- Submit a pull request.
Please see our Code of Conduct document.
- If your PRs get stuck join us on IRC or add to the working group agenda.
- The code style is what is enforced by CI, everything else is off topic.
- All PRs must be reviewed by one other person. This is enforced by GitHub. Larger changes require +2.
:ref:`installation` from source or package.
Please see :ref:`full_testing`.
In the conf.py, we define an intersphinx_mapping
which provides the base
URLs for conveniently linking to other Sphinx documented projects. In order to
find the correct link syntax and text you can link to, you can quickly inspect
the reference from the command line.
For example, if we would like to link to a specific part of the Ansible documentation, we could first run the following command:
python -m sphinx.ext.intersphinx https://docs.ansible.com/ansible/latest/objects.inv
And then see the entire Sphinx listing. We see entries that look like:
py:attribute
AnsibleModule._debug api/index.html#AnsibleModule._debug
With which we can link out to using the following syntax:
:py:attribute:`AnsibleModule._debug`