ci: add drone pipeline for python tests

This commit is contained in:
2026-01-22 11:23:12 +08:00
parent 10b9fb1804
commit 248a240524

12
.drone.yml Normal file
View File

@@ -0,0 +1,12 @@
kind: pipeline
type: docker
name: test
steps:
- name: run tests
image: python:3.10
commands:
- pip install --upgrade pip
- pip install -r requirements.txt
- pip install pytest
- pytest tests/