Fixed the CI/CD configuration.
continuous-integration/drone/push Build is failing

I have dev_requirements.txt for tests, not requirements.txt
This commit is contained in:
2023-06-17 19:24:17 +03:00
parent 8863ea7822
commit af8431b74a
+1 -1
View File
@@ -6,6 +6,6 @@ steps:
- name: install dependencies and run tests - 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 dev_requirements.txt
- pytest -s - pytest -s