From af8431b74a9253c68ba328fcafcbb9b5fae322a1 Mon Sep 17 00:00:00 2001 From: KKlochko Date: Sat, 17 Jun 2023 19:24:17 +0300 Subject: [PATCH] Fixed the CI/CD configuration. I have dev_requirements.txt for tests, not requirements.txt --- .drone.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yaml b/.drone.yaml index f4a0d26..2ddb799 100644 --- a/.drone.yaml +++ b/.drone.yaml @@ -6,6 +6,6 @@ steps: - name: install dependencies and run tests image: python:3.10-alpine commands: - - pip install -r requirements.txt + - pip install -r dev_requirements.txt - pytest -s