From 248a240524a7094103085f2c25f954be6037d9ca Mon Sep 17 00:00:00 2001 From: 16337 <1633794139@qq.com> Date: Thu, 22 Jan 2026 11:23:12 +0800 Subject: [PATCH] ci: add drone pipeline for python tests --- .drone.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..c03a8d7 --- /dev/null +++ b/.drone.yml @@ -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/ \ No newline at end of file