forked from wallabag/docker
added travis testing
travis builds and spins up containers for sqlite, mariadb and postgres and runs a simple python test script for accessing the wallabag.
This commit is contained in:
25
.travis.yml
Normal file
25
.travis.yml
Normal file
@ -0,0 +1,25 @@
|
||||
language: python
|
||||
|
||||
python:
|
||||
- 3.5
|
||||
|
||||
services:
|
||||
- docker
|
||||
|
||||
env:
|
||||
- DB_TYPE=sqlite
|
||||
- DB_TYPE=mariadb
|
||||
- DB_TYPE=postgresql
|
||||
|
||||
install:
|
||||
- docker-compose -f tests/docker-compose.$DB_TYPE.yml build
|
||||
- docker-compose -f tests/docker-compose.$DB_TYPE.yml up -d
|
||||
|
||||
before_script:
|
||||
- pip install pytest
|
||||
- pip install requests
|
||||
|
||||
script:
|
||||
- docker ps | grep -q wallabag
|
||||
- sleep 60
|
||||
- py.test tests/
|
||||
Reference in New Issue
Block a user