11 lines
167 B
YAML
11 lines
167 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: test
|
|
image: python:3.7.3
|
|
commands:
|
|
- pip install --upgrade pip
|
|
- pip install -r requirements.txt
|
|
- pytest
|