mirror of
https://github.com/shouptech/humulus.git
synced 2026-02-03 19:39:43 +00:00
11 lines
185 B
YAML
11 lines
185 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: test
|
|
image: python:3.6
|
|
commands:
|
|
- pip install coverage pytest
|
|
- pip install -e .
|
|
- coverage run -m pytest
|
|
- coverage report -m
|