ci: add drone pipeline for python tests
This commit is contained in:
12
.drone.yml
Normal file
12
.drone.yml
Normal file
@@ -0,0 +1,12 @@
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: test
|
||||
|
||||
steps:
|
||||
- name: run tests
|
||||
image: python:3.10
|
||||
commands:
|
||||
- pip install --upgrade pip
|
||||
- pip install -r requirements.txt
|
||||
- pip install pytest
|
||||
- pytest tests/
|
||||
Reference in New Issue
Block a user