2
0

ci(travis): Add e2e smoke testing with Travis CI

This commit is contained in:
Burak Yigit Kaya
2019-07-01 22:50:21 +03:00
parent c42fc264df
commit f015462a51
2 changed files with 42 additions and 0 deletions

9
.travis.yml Normal file
View File

@@ -0,0 +1,9 @@
language: bash
services: docker
script:
- ./install.sh
- docker-compose run --rm web createuser --superuser --email test@sentry.io --password test123TEST
- docker-compose up -d
- timeout 60 bash -c 'until $(curl -Isf -o /dev/null http://localhost:9000); do printf '.'; sleep 0.5; done'
- ./test.sh