-
Notifications
You must be signed in to change notification settings - Fork 11
/
.drone.yml
46 lines (43 loc) · 1.24 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
kind: pipeline
type: docker
name: test
steps:
- name: Test Python
image: python:3.12
commands:
- curl -L "https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-$(dpkg --print-architecture)" > "${HOME}/bin/cc-test-reporter"
- chmod +x "${HOME}/bin/cc-test-reporter"
- pip install -e .[test]
- ruff check .
- mypy . --strict --exclude build
- cc-test-reporter before-build
- coverage run -m unittest
- exitcode="$?"
- coverage report -m
- coverage xml
- cc-test-reporter after-build --exit-code "$exitcode"
environment:
CC_TEST_REPORTER_ID: 3aedff2168eb5cbde21c068607a0b3938e6174ecadb9928d7318661ace2eb1a4
- name: Test Python Packaging
image: python:3.12-slim
commands:
- pip install build twine
- python -m build
- twine check --strict dist/*
- name: Upload Python
depends_on:
- Test Python
- Test Python Packaging
environment:
TWINE_USERNAME:
from_secret: twine_username
TWINE_PASSWORD:
from_secret: twine_password
image: python:3.12-slim
commands:
- pip install build twine
- python -m build
- twine upload dist/*
when:
event:
- tag