2018-06-25 13:15:32 +00:00
|
|
|
language: python
|
|
|
|
|
|
|
|
cache: pip
|
|
|
|
|
|
|
|
python:
|
|
|
|
- "3.6"
|
2018-06-25 13:50:22 +00:00
|
|
|
- "3.7-dev"
|
2018-06-25 13:15:32 +00:00
|
|
|
|
2018-12-04 16:05:16 +00:00
|
|
|
env:
|
2018-12-05 11:53:38 +00:00
|
|
|
- STARLETTE_TEST_DATABASE=postgresql://localhost/starlette
|
2018-12-04 16:05:16 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
- postgresql
|
|
|
|
|
2018-06-25 13:15:32 +00:00
|
|
|
install:
|
|
|
|
- pip install -r requirements.txt
|
|
|
|
|
2018-12-04 16:05:16 +00:00
|
|
|
before_script:
|
|
|
|
- psql -c 'create database starlette;' -U postgres
|
|
|
|
|
2018-06-25 13:15:32 +00:00
|
|
|
script:
|
|
|
|
- scripts/test
|
2018-06-25 13:48:18 +00:00
|
|
|
|
|
|
|
after_script:
|
|
|
|
- codecov
|