diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..c03a8d7 --- /dev/null +++ b/.drone.yml @@ -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/ \ No newline at end of file