2022-03-01 08:01:56 +01:00
|
|
|
---
|
|
|
|
################
|
|
|
|
# Test #
|
|
|
|
################
|
|
|
|
|
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
type: docker
|
|
|
|
|
|
|
|
steps:
|
|
|
|
# Run tests against Python with pytest
|
|
|
|
- name: test
|
|
|
|
image: python:3.8
|
|
|
|
commands:
|
|
|
|
# Install dependencies
|
|
|
|
- pip install poetry
|
2022-03-01 10:09:22 +01:00
|
|
|
- poetry install -E eth
|
2022-03-01 09:31:52 +01:00
|
|
|
- poetry run pylint cic --fail-under=8.00
|
2022-03-01 08:01:56 +01:00
|
|
|
- poetry run pytest
|
|
|
|
environment:
|
|
|
|
LOGLEVEL: info
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: poetry_cache
|
|
|
|
path: /root/.cache/pypoetry
|
|
|
|
- name: pip_cache
|
|
|
|
path: /root/.cache/pip
|
2022-03-01 10:09:22 +01:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
2022-03-01 08:01:56 +01:00
|
|
|
- name: publish
|
|
|
|
image: python:3.8
|
|
|
|
commands:
|
|
|
|
# Install dependencies
|
|
|
|
- pip install poetry
|
|
|
|
- poetry install
|
|
|
|
- poetry run semantic-release publish
|
|
|
|
depends_on:
|
|
|
|
- test
|
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
- master
|
2022-03-01 10:40:30 +01:00
|
|
|
event:
|
|
|
|
- push
|
2022-03-01 08:01:56 +01:00
|
|
|
environment:
|
|
|
|
LOGLEVEL: info
|
|
|
|
GIT_SSL_NO_VERIFY: 1
|
|
|
|
REPOSITORY_USERNAME: __token__
|
|
|
|
REPOSITORY_PASSWORD:
|
|
|
|
from_secret: pypi_token
|
|
|
|
GITEA_TOKEN:
|
|
|
|
from_secret: gitea_token
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: poetry_cache
|
|
|
|
path: /root/.cache/pypoetry
|
|
|
|
- name: pip_cache
|
|
|
|
path: /root/.cache/pip
|
|
|
|
volumes:
|
|
|
|
- name: poetry_cache
|
|
|
|
host:
|
|
|
|
path: /tmp/cache/drone/pypoetry
|
|
|
|
- name: pip_cache
|
|
|
|
host:
|
|
|
|
path: /tmp/cache/drone/pip
|