Update molecule configuration to work with 3.0.

This commit is contained in:
Jeff Geerling 2020-02-20 14:24:10 -06:00
parent 020cbad256
commit 210c71981b
4 changed files with 4 additions and 37 deletions

View File

@ -13,7 +13,7 @@ env:
install: install:
# Install test dependencies. # Install test dependencies.
- pip install molecule docker - pip install molecule yamllint ansible-lint docker
before_script: before_script:
# Use actual Ansible Galaxy role name for the project directory. # Use actual Ansible Galaxy role name for the project directory.

View File

@ -4,9 +4,8 @@ dependency:
driver: driver:
name: docker name: docker
lint: lint:
name: yamllint yamllint .
options: ansible-lint
config-file: molecule/default/yaml-lint.yml
platforms: platforms:
- name: instance - name: instance
image: "geerlingguy/docker-${MOLECULE_DISTRO:-centos7}-ansible:latest" image: "geerlingguy/docker-${MOLECULE_DISTRO:-centos7}-ansible:latest"
@ -17,13 +16,7 @@ platforms:
pre_build_image: true pre_build_image: true
provisioner: provisioner:
name: ansible name: ansible
lint:
name: ansible-lint
playbooks: playbooks:
converge: ${MOLECULE_PLAYBOOK:-playbook.yml} converge: ${MOLECULE_PLAYBOOK:-converge.yml}
scenario: scenario:
name: default name: default
verifier:
name: testinfra
lint:
name: flake8

View File

@ -1,20 +0,0 @@
---
- name: Converge
hosts: all
become: true
vars:
pip_install_packages:
# Test installing a specific version of a package.
- name: ipaddress
version: "1.0.18"
# Test installing a package by name.
- colorama
pre_tasks:
- name: Update apt cache.
apt: update_cache=true cache_valid_time=600
when: ansible_os_family == 'Debian'
roles:
- role: geerlingguy.pip

View File

@ -1,6 +0,0 @@
---
extends: default
rules:
line-length:
max: 120
level: warning