From 90af2a38a446082578ebfc14ba8678f9eb474b74 Mon Sep 17 00:00:00 2001 From: Lulzette Date: Tue, 19 Oct 2021 02:42:01 +0000 Subject: [PATCH] test --- .drone.yml | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/.drone.yml b/.drone.yml index f5b9966..216cc2f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,20 +1,13 @@ kind: pipeline -type: exec +type: docker name: default -platform: - os: linux - arch: amd64 - steps: - name: build + image: python commands: - - docker build . - - name: test - commands: - - docker-compose up --build --abort-on-container-exit - - name: run - commands: - - docker-compose up --build -d + - pip3 install --upgrade pip + - pip3 install -r requirements.txt + - bash test.sh