mirror of
https://github.com/shouptech/humulus.git
synced 2026-02-03 18:19:42 +00:00
24 lines
463 B
YAML
24 lines
463 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
services:
|
|
- name: couchdb
|
|
image: couchdb:2.3
|
|
environment:
|
|
COUCHDB_USER: admin
|
|
COUCHDB_PASSWORD: password
|
|
|
|
steps:
|
|
- name: test
|
|
image: python:3.6
|
|
environment:
|
|
COUCH_URL: 'http://couchdb:5984'
|
|
commands:
|
|
# Install pre-requisites
|
|
- pip install coverage pytest
|
|
- pip install -e .
|
|
# Wait for couch
|
|
- until curl "$COUCH_URL" ; do sleep 1 ; done
|
|
# Run tests
|
|
- coverage run -m pytest
|
|
- coverage report -m
|