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