Compare commits

..
2 Commits
Author SHA1 Message Date
KKlochko edf24984fb Update the CI/CD configuration to one step.
continuous-integration/drone/push Build is passing
2023-06-17 19:13:17 +03:00
KKlochko 5633c348f4 Update the CI/CD configuration.
continuous-integration/drone/push Build is failing
2023-06-17 19:07:32 +03:00
+4 -6
View File
@@ -3,11 +3,9 @@ type: docker
name: default
steps:
- name: installing deps and test
- name: install dependencies and run tests
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
- pytest -s