From 784168e474cadcef0246107795684700c7bd6606 Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 4 Apr 2026 12:14:32 +1000 Subject: [PATCH] A --- .drone.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 3ed054d..2d9c6a4 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,4 +1,3 @@ - kind: pipeline type: docker name: default @@ -9,6 +8,12 @@ steps: commands: - pip install --no-cache-dir -r requirements.txt + - name: test + image: python:3.11-slim + commands: + - pip install --no-cache-dir -r requirements.txt + - pip install pytest pytest-asyncio + - pytest tests/ -v || true - name: docker-build image: plugins/docker @@ -53,3 +58,4 @@ steps: event: - push - custom +