├── .ansible.cfg ├── .flake8 ├── .github ├── FUNDING.yml ├── release-drafter.yml └── workflows │ ├── ack.yml │ ├── push.yml │ ├── release.yml │ └── tox.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .yamllint ├── LICENSE ├── MANIFEST.in ├── README.rst ├── bindep.txt ├── pyproject.toml ├── pytest.ini ├── setup.cfg ├── src └── molecule_lxd │ ├── __init__.py │ ├── cookiecutter │ ├── cookiecutter.json │ └── {{cookiecutter.molecule_directory}} │ │ └── {{cookiecutter.scenario_name}} │ │ └── converge.yml │ ├── driver.py │ ├── playbooks │ ├── create.yml │ ├── destroy.yml │ └── prepare.yml │ └── test │ ├── __init__.py │ ├── conftest.py │ ├── test_driver.py │ └── test_func.py └── tox.ini /.ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/.ansible.cfg -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/ack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/.github/workflows/ack.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/.github/workflows/tox.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/.yamllint -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/README.rst -------------------------------------------------------------------------------- /bindep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/bindep.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/molecule_lxd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/molecule_lxd/cookiecutter/cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/src/molecule_lxd/cookiecutter/cookiecutter.json -------------------------------------------------------------------------------- /src/molecule_lxd/cookiecutter/{{cookiecutter.molecule_directory}}/{{cookiecutter.scenario_name}}/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/src/molecule_lxd/cookiecutter/{{cookiecutter.molecule_directory}}/{{cookiecutter.scenario_name}}/converge.yml -------------------------------------------------------------------------------- /src/molecule_lxd/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/src/molecule_lxd/driver.py -------------------------------------------------------------------------------- /src/molecule_lxd/playbooks/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/src/molecule_lxd/playbooks/create.yml -------------------------------------------------------------------------------- /src/molecule_lxd/playbooks/destroy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/src/molecule_lxd/playbooks/destroy.yml -------------------------------------------------------------------------------- /src/molecule_lxd/playbooks/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/src/molecule_lxd/playbooks/prepare.yml -------------------------------------------------------------------------------- /src/molecule_lxd/test/__init__.py: -------------------------------------------------------------------------------- 1 | """Driver tests""" 2 | -------------------------------------------------------------------------------- /src/molecule_lxd/test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/src/molecule_lxd/test/conftest.py -------------------------------------------------------------------------------- /src/molecule_lxd/test/test_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/src/molecule_lxd/test/test_driver.py -------------------------------------------------------------------------------- /src/molecule_lxd/test/test_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/src/molecule_lxd/test/test_func.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible-community/molecule-lxd/HEAD/tox.ini --------------------------------------------------------------------------------