ansible-borgbackup/.travis.yml

25 lines
345 B
YAML
Raw Permalink Normal View History

2019-03-10 20:11:12 +00:00
---
sudo: required
2019-03-12 11:14:47 +00:00
2019-03-10 20:11:12 +00:00
language: python
2019-03-12 11:14:47 +00:00
2019-03-10 20:11:12 +00:00
services:
- docker
2019-03-12 11:14:47 +00:00
2019-03-10 20:11:12 +00:00
before_install:
- sudo apt-get -qq update
2019-03-12 11:14:47 +00:00
2019-03-10 20:11:12 +00:00
install:
- pip install molecule
2019-03-12 09:36:10 +00:00
- pip install ansible
2019-03-10 20:11:12 +00:00
- pip install docker
2019-03-12 11:14:47 +00:00
2019-03-12 11:33:37 +00:00
env:
- SCENARIO=lamp
- SCENARIO=extra_opts
2019-03-12 11:33:37 +00:00
- SCENARIO=mgt
- SCENARIO=multiple
- SCENARIO=clients
script: "molecule test --scenario-name $SCENARIO"