diff --git a/.drone.yml b/.drone.yml index 6911bfa..203e788 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,11 +3,13 @@ type: docker name: default steps: -- name: installing deps and test +- name: install dependencies image: python:3.10-alpine commands: - - export POETRY_HOME=/opt/poetry - - python3 -m venv $POETRY_HOME - - $POETRY_HOME/bin/pip install poetry==1.3.2 - - $POETRY_HOME/bin/poetry install - - $POETRY_HOME/bin/poetry run pytest -s + - pip install -r requirements.txt + +- name: run tests + image: python:3.10-alpine + commands: + - pytest -s +