toolshed/.build.yml
2023-07-07 18:45:05 +02:00

16 lines
389 B
YAML

kind: pipeline
type: docker
name: default
image:
tasks:
-
steps:
- name: backend
image: python:alpine
commands:
- cd backend
- apk add --no-cache gcc musl-dev python3-dev
- pip install --upgrade pip && pip install -r requirements.txt
- python3 configure.py
- coverage run --parallel-mode --concurrency=multiprocessing manage.py test --parallel=$(nproc) && coverage report