mirror of
https://github.com/shouptech/humulus.git
synced 2026-02-03 17:09:44 +00:00
18 lines
351 B
YAML
18 lines
351 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: launch couch
|
|
image: couchdb:2.3
|
|
environment:
|
|
COUCHDB_USER: admin
|
|
COUCHDB_PASSWORD: password
|
|
|
|
- name: test
|
|
image: python:3.6
|
|
commands:
|
|
- export HUMULUS_SETTINGS="$(pwd)/testsettings.py"
|
|
- pip install coverage pytest
|
|
- pip install -e .
|
|
- coverage run -m pytest
|
|
- coverage report -m
|