Skip to content

Commit

Permalink
Set up Travis configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
hydrosquall committed Oct 16, 2018
1 parent c2af12e commit 35849ad
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
env:
- DOCKER_COMPOSE_VERSION=1.9.0

before_install:
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin

script:
- cd tests/airflow1.8-py2 && docker-compose up -d
- curl http://localhost:8080/admin/metrics

0 comments on commit 35849ad

Please sign in to comment.