From 4b0541499811f3a5ded6de8b7b41a2c3a913f86a Mon Sep 17 00:00:00 2001 From: Philipp Rothmann Date: Fri, 29 Apr 2022 15:58:11 +0200 Subject: [PATCH] add dronefile --- .drone.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index b1707d6..5473893 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,8 +3,9 @@ name: default steps: - name: test - image: python + image: docker/compose:1.23.2 commands: - - pip install -r requirements.txt - - pytest + - make init + - make up + - make test