| 12345678910111213141516171819202122232425262728 |
- ---
- group: trusty
- language: python
- python: "2.7"
- env:
- - SCENARIO=debian
- - SCENARIO=ubuntu
- - SCENARIO=centos
- - SCENARIO=fedora
- - SCENARIO=amazonlinux
- services: docker
- addons:
- apt:
- packages:
- - docker-ce
- cache:
- pip: true
- directories:
- - ~/.cache/pipenv
- install:
- - pip install pipenv
- - pipenv install --two --dev
- - gem install rubocop
- script:
- - pipenv run molecule test --scenario-name $SCENARIO --driver-name docker --destroy always
- notifications:
- webhooks: https://galaxy.ansible.com/api/v1/notifications/
|