Update the CI/CD configuration to one step.
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-06-17 19:13:17 +03:00
parent 5633c348f4
commit edf24984fb
+1 -5
View File
@@ -3,13 +3,9 @@ type: docker
name: default name: default
steps: steps:
- name: install dependencies - name: install dependencies and run tests
image: python:3.10-alpine image: python:3.10-alpine
commands: commands:
- pip install -r requirements.txt - pip install -r requirements.txt
- name: run tests
image: python:3.10-alpine
commands:
- pytest -s - pytest -s