toolshed/.build.yml
jedi bd59c40ac6
Some checks failed
continuous-integration/drone/push Build is failing
stash
2024-03-01 00:50:26 +01:00

16 lines
323 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 manage.py test && coverage report