12 lines
196 B
YAML
12 lines
196 B
YAML
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: test
|
|
image: python:3.9
|
|
commands:
|
|
- pip install -r requirements.txt
|
|
- python -m unittest discover -s tests
|
|
- python app.py |