Testing Drone CI

This commit is contained in:
2020-07-08 18:41:23 +02:00
parent 4de501fbf8
commit b7c854ac7a
2 changed files with 11 additions and 0 deletions

9
.drone.yml Normal file
View File

@@ -0,0 +1,9 @@
kind pipeline
name default
steps
- name test
image python
commands
- pip install -r requirements.txt
- pytest --flake8 --isort

2
requirements.txt Normal file
View File

@@ -0,0 +1,2 @@
pytest-flake8
pytest-isort