Fix the generate_tests.sh to actually be executable.

This commit is contained in:
Abhilash Raj
2017-05-23 16:18:46 -07:00
committed by Abhilash Raj
parent dbd4b0d5fa
commit a43239e6ec
2 changed files with 3 additions and 1 deletions

View File

@@ -12,7 +12,7 @@ install:
- docker-compose --version
before_script:
- tests/generate_tests.sh
- sh tests/generate_tests.sh
- docker-compose -f docker-compose.yaml -f docker-test.yaml up -d
- docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' mailman-core
- docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' mailman-web

View File

@@ -1,3 +1,5 @@
#!/bin/sh
if [ "$TRAVIS_BRANCH" = "master" ]; then
TAG="latest"
else