Hi there! We're excited to have you as a contributor.
If you have questions about this document or anything not covered here? Come chat with us #ansible-awx
on irc.freenode.net
- All code and doc submissions are done through pull requests against the
master
branch. - Take care to make sure no merge commits are in the submission, and use
git rebase
vsgit merge
for this reason. - We ask all of our community members and contributors to adhere to the Ansible code of conduct. If you have questions, or need assistance, please reach out to our community team at [email protected]
It's entirely possible to develop on Ansible Runner simply with
(host)$ python setup.py develop
Another (recommended) way is to use Pipenv, make sure you have it installed and then:
(host)$ pipenv install --dev
This will automatically setup the development environment under a virtualenv, which you can then switch to with:
(host)$ pipenv shell
tox
is used to run linters (flake8
and yamllint
) and unit tests on both Python 2 and 3. It uses pipenv to bootstrap these two environments.