-
Notifications
You must be signed in to change notification settings - Fork 4
/
.drone.yml
53 lines (49 loc) · 1.31 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
47
48
49
50
51
52
53
kind: pipeline
type: docker
name: test
steps:
- name: fetch
image: alpine/git
commands:
- git fetch --tags
- name: Test Python
depends_on:
- fetch
image: python:3.13
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 .
- 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: 3ed7f5ff3362f31338e19d26a3641748d004a598d0e68d67ecdcf4cb632b3cdb
- name: Test Python Packaging
image: python:3.13
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.13
commands:
- pip install build twine
- python -m build
- twine upload dist/*
when:
event:
- tag