I'm looking at adding support for tox to all of the roles that don't currently use tox. For example, here is diff of .travis.yml from kdump:
script: - - molecule --version - - ansible --version - - molecule lint - - molecule syntax - - molecule test + - ./.travis/runtox
and here is the relevant section from tox:
[tox] envlist = black, pylint, flake8, py{26,27,36,37,38}, custom
molecule is not in this list. Should we add molecule to this list? Seems like we should, or tox conversion will regress travis CI behavior.