18 lines
199 B
YAML
18 lines
199 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
name: default
|
||
|
|
||
|
platform:
|
||
|
os: linux
|
||
|
arch: amd64
|
||
|
|
||
|
steps:
|
||
|
- name: test
|
||
|
image: python
|
||
|
commands:
|
||
|
- cd web
|
||
|
- pip install -r test_requirements.txt
|
||
|
- python runtests.py
|
||
|
|
||
|
...
|