Testing drone pipeline
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
731a1aa22f
commit
07fc6e86e0
45
.drone.yml
45
.drone.yml
|
|
@ -2,34 +2,27 @@ kind: pipeline
|
|||
name: default
|
||||
type: docker
|
||||
|
||||
workspace:
|
||||
path: /
|
||||
pipeline:
|
||||
setup:
|
||||
image: python
|
||||
commands:
|
||||
- pip install -r requirements_test.txt
|
||||
- ./scripts/CI/setup.sh
|
||||
|
||||
steps:
|
||||
- name: unittest
|
||||
image: python
|
||||
commands:
|
||||
- pip install -r requirements_test.txt
|
||||
- ./scripts/CI/setup.sh
|
||||
- ./scripts/CI/test.sh
|
||||
unittest:
|
||||
image: python
|
||||
commands:
|
||||
- ./scripts/CI/test.sh
|
||||
|
||||
settings:
|
||||
username:
|
||||
from_secret: gitea_username
|
||||
password:
|
||||
from_secret: gitea_password
|
||||
static analysis:
|
||||
image: python
|
||||
commands:
|
||||
- ./scripts/CI/lint.sh
|
||||
|
||||
- name: static analysis
|
||||
image: python
|
||||
commands:
|
||||
- pip install -r requirements_test.txt
|
||||
- ./scripts/CI/setup.sh
|
||||
- ./scripts/CI/lint.sh
|
||||
|
||||
settings:
|
||||
username:
|
||||
from_secret: gitea_username
|
||||
password:
|
||||
from_secret: gitea_password
|
||||
settings:
|
||||
username:
|
||||
from_secret: gitea_username
|
||||
password:
|
||||
from_secret: gitea_password
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue