| 123456789101112131415161718192021222324 |
- ---
- 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
- 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/
|