This commit is contained in:
parent
3ec11e3051
commit
58242e82a6
32
.drone.yml
Normal file
32
.drone.yml
Normal file
@ -0,0 +1,32 @@
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: build
|
||||
steps:
|
||||
- name: build
|
||||
image: python:3-buster
|
||||
commands:
|
||||
- export PYTHONPATH=.
|
||||
- export FLASK_APP=period
|
||||
- apt-get update -qy
|
||||
- apt-get install -y python3-dev python3-pip
|
||||
- pip3 install --upgrade pip
|
||||
- pip3 install --upgrade setuptools
|
||||
- pip3 install Flask gunicorn pytest pytest-cov
|
||||
- pip3 install pendulum
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: test
|
||||
steps:
|
||||
- name: test
|
||||
image: python:3-buster
|
||||
commands:
|
||||
- export PYTHONPATH=.
|
||||
- export FLASK_APP=period
|
||||
- apt-get update -qy
|
||||
- apt-get install -y python3-dev python3-pip
|
||||
- pip3 install --upgrade pip
|
||||
- pip3 install --upgrade setuptools
|
||||
- pip3 install Flask gunicorn pytest pytest-cov
|
||||
- pip3 install pendulum
|
||||
- pytest tests --cov --cov-report term --cov-report html --junitxml=report.xml
|
Loading…
Reference in New Issue
Block a user