This commit is contained in:
parent
3cd89b7162
commit
0b92db278b
4 changed files with 114 additions and 1 deletions
17
.build.yml
Normal file
17
.build.yml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue