Skip to content

Commit

Permalink
init drone.io conf
Browse files Browse the repository at this point in the history
  • Loading branch information
orsinium committed Oct 1, 2020
1 parent 91a9f43 commit 2d54f59
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .drone.yml
@@ -0,0 +1,20 @@
kind: pipeline
type: docker
name: default

steps:
- name: pytest 3.7
image: python:3.7-alpine
environment:
ENV: pytest
commands:
# install DepHell
- curl -L dephell.org/install > install.py
- python3 install.py --branch=master
- dephell inspect self
# install deps
- dephell venv create --env=$ENV
- dephell deps install --env=$ENV
# run
- dephell venv run --env=$ENV
- dephell venv run --env=$ENV coveralls

0 comments on commit 2d54f59

Please sign in to comment.