18 lines
374 B
YAML
18 lines
374 B
YAML
---
|
|
sudo: required
|
|
language: python
|
|
python:
|
|
- "3.6"
|
|
services:
|
|
- docker
|
|
before_install:
|
|
- sudo apt-get -qq update
|
|
- >
|
|
sudo apt-get install -o Dpkg::Options::="--force-confold"
|
|
--force-yes -y docker-ce
|
|
install:
|
|
- pip install -r requirements-travis.txt
|
|
script:
|
|
- molecule test
|
|
notifications:
|
|
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|